JavaScript读取所有代码,直到到达$ .ajax或$ .post
我已经尝试过一种方法,而另一种方法是相同的,但两者似乎都不想工作
我整天都在搜索互联网
$(document).ready(function($) {
$(".submitCookies").click(function (event) {
event.preventDefault();
console.log('The function is hooked up');
console.log(my_ajaxurl);
$.ajax({
type: "POST",
data: {
action: 'accepted',
lol: 'hoi'
}
,url: my_ajaxurl,
success: function (data) {
console.log(data);
},
error: function(errorThrown){
console.log(errorThrown);
}
});
jQuery.post(
window.location + '/wp-content/plugins/cookie-plugin/ajax_process.php',
data = {
'action': 'accepted',
},
)
.fail(function () {
alert("error");
})
});
});
即使在控制台中也没有任何错误