发送javascript AJAX请求会触发多个页面加载

时间:2014-07-11 20:26:02

标签: javascript ajax

我已搜索但无法找到此问题的答案。我正在调用异步javascript文件,它调用的php页面会使数据库条目两次。

window.onload = function(){
    var xmlhttp;
    if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4 && xmlhttp.status==200) {
                alert(xmlhttp.responseText);
                //document.write(xmlhttp.responseText);
                return;
        }
    }
    xmlhttp.open("POST","http://example.com/api/tracking/index.php?cid=" + get["clientId"] + "&refUrl=" +  encodeURIComponent(siteURL) + "&auk=" + get["auth"],true);
    xmlhttp.send();
}

索引php页面执行插入并返回新的行ID。成功响应中的警报对应于该id,但之前有一个条目是一毫秒。我认为这种情况正在发生,因为页面正在被访问,直到它达到准备状态4.问题是如何停止或绕过它?

0 个答案:

没有答案