0

我正在做一个简单的 ajax 调用,它可以工作,但这里的问题是,当我在 MAC 上运行它时,它只能在 Safari 上运行,而当我在 Windows 7/8 上运行时,它只能在 IE 上运行,代码在这里

function check(){
    var xhr = new XMLHttpRequest();
    var url="http://asdev-nfl.dtvce.com/CMPService/service/AuthorizationObjectService?siteId=Android_Customer_01&userName=bsstest03@att.net&password=widget03&environment=prod";
    // var url="http://10.23.181.154:8080/CMPService/service/AuthorizationObjectService?siteId=Android_Customer_01&userName=bsstest03@att.net&password=widget03&environment=prod";
    xhr.open("POST",url,true);
    console.log("inside function 1");
    xhr.send();
    xhr.onreadystatechange = function(){
        console.log("I am Inside ajax");
        if(xhr.readyState==4 && xhr.status==200)
        {
            var resp = xhr.responseText;
            console.log(resp);
            alert("alerting response"+resp);
            document.getElementById("outPut").innerHTML=resp;
        }
        else{
            alert("there is a error"+xhr.readyStatus+"Ready Status "+xhr.status);
        }
    };
4

0 回答 0