Ajax请求无法发送?

时间:2014-08-05 10:20:29

标签: javascript jquery ajax wordpress wordpress-plugin

我的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
        }
    });
});

0 个答案:

没有答案