有谁能告诉我为什么XDomainRequest不能在我的客户登录计算机上运行? 它适用于我的IE9和我的服务器。 它适用于他们的服务器,但不能用于他们的IE8登录
function CreateCrossDomainMessage(ExecuteExternalWebServiceClass, EndpointAddress, PostData) {
alert("Testing XDomainRequest");
var xdr = new XDomainRequest();
xdr.open("POST", EndpointAddress); // Does not open on clients computer, works on their servers ????
xdr.timeout = 2000;
xdr.ontimeout = function () {
alert("ontimeout");
};
xdr.onerror = function () {
alert("onerror");
};
xdr.onload = function () {
alert("onload");
};
xdr.send(PostData);
// new CrossDomainMessage(ExecuteExternalWebServiceClass,EndpointAddress,PostData); }