私は単純な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);
}
};