ฉันพยายามสร้าง ajaxform ที่ด้านหน้า ฉันกำลังใช้รหัส
jQuery.ajax(
{
type: "post",
dataType: "json",
url: ajaxurl,
data: formData,
success: function(msg){
console.log(msg);
}
});
ซึ่งฉันได้รับข้อผิดพลาด
Uncaught ReferenceError: ajaxurl is not definedworklorAjaxBookForm @
?page_id=2:291onclick @ ?page_id=2:202
ในขณะที่ใช้รหัสที่คล้ายกันในงานแบ็กเอนด์ผู้ดูแลระบบ ฉันต้องใช้ URL ใดในการประมวลผลคำขอ ajax
ตรวจสอบบทช่วยสอนนี้ มันอาจช่วยคุณได้ 1stwebdesigner.com/implement-ajax-wordpress-themes
—
Nilambar