谁能告诉我为什么 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); }