Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
100 views
in Technique[技术] by (71.8m points)

php - Send data on send submit button using ajax in wordpress

I am using first time ajax in WordPress. I want to send data via ajax. I am sending data using ajax from frontend submit button. I want to send SMS data on submit button click. I have a SMS-API file in php code. SMS-API file i have put in plugin folder of wp-content folder Now i want to send message when submit button click. I don't not how to give path of SMS-API file where i put SMS-API file in WordPress folder.

I put code in main.js.php file

$(document).ready(function() {
$(".booking-button").on('click', function(){
     $.ajax({
            type: 'post',
            url: ajax_script.ajaxurl,
            data: {status: 'status', name: 'name'},
            success: function (response) {
              alert(response);
            },
        }); }); });

i have put that code in funtion.php file. Add code to use ajax. My SMS-API File name is GatewayAPITokenFile.php My SMS-API File in folder of www.exmpale.com/wp-content/plugins/GatewayAPITokenFile

 function add_ajax()
    {
       wp_localize_script(
        'function',
        'ajax_script',
        array( 'ajaxurl' => admin_url( 'GatewayAPITokenFile.php' ) ) );
    }
    add_action('template_redirect', 'add_ajax');  

I don't know how to send message data to SMS-API(GatewayAPITokenFile.php) File and in response of ajax i want to get message.

question from:https://stackoverflow.com/questions/65884828/send-data-on-send-submit-button-using-ajax-in-wordpress

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...