我寫了一個JavaScript函數傳遞變量轉化爲JavaScript函數
jQuery(document).ready(function newbie($) {
//var email = 'emailaddress'
var data = {
action: 'test_response',
post_var: email
};
// the_ajax_script.ajaxurl is a variable that will contain the url to the ajax processing file
$.post(the_ajax_script.ajaxurl, data, function(response) {
alert(response);
});
return false;
});
我將稱之爲使用
newbie();
但我想在一個變量傳遞(電子郵件地址),當我調用函數,但我不知道如何做到這一點。那$符號似乎妨礙了我!任何想法非常感謝。
這是一個命名的函數表達式,它的名字只被本身 – Musa