我的ajax请求有错误且无法发送,我有其他ajax请求工作正常,但不是这个。
jQuery(".bestellen_button").click(function() {
jQuery.ajax({
url: ajaxurl + "?" + (new Date()).getTime(),
timeout: 30000,
type: "GET",
data: {
'action': 'login',
'url': document.URL,
'block': jQuery(this).attr('id')
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("An error has occurred making the request: " + errorThrown)
},
cache: false,
success: function(data) {
//window.location.replace(data);
document.body.innerHTML = data
}
});
});