如何提供网址?在本地WordPress中...此代码在本地主机中不起作用,但在服务器中起作用。此代码引发错误..它无法到达网址
jQuery.ajax({
url: "<?php echo get_template_directory_uri(); ?>/ajaxpu.php",
type: "POST",//post not working
data: {'offset': 6, 'cat': 3, 'next':'next'},
cache: false,
success: function(result) {
jQuery('.response'+cat).html(result);
jQuery('.load-next1 .loader').hide();
jQuery('html, body').animate({
scrollTop: jQuery(".publications-section").offset().top
}, 1000);
},
});
答案 0 :(得分:0)
尝试以下代码。
jQuery.ajax
({
url: get_template_directory_uri() . "/ajaxpu.php",
type: "POST",//post not working
data: {'offset': 6, 'cat': 3, 'next':'next'},
cache: false,
success: function(result){
jQuery('.response'+cat).html(result);
jQuery('.load-next1 .loader').hide();
jQuery('html, body').animate({
scrollTop: jQuery(".publications-section").offset().top
}, 1000);
},
});