我有网络服务,我从 jQuery 调用它,一切正常,直到我留在同一台服务器上,但是当我尝试从其他域调用该服务时,我没有得到任何东西,请有人帮助我。下面是我的代码:
$.ajax({
type: 'POST',
url: 'http://-----------/Service.asmx/BulkUpdate',
data:"{'CaseID': '"+CaseID+"'}",
contentType : "application/json; charset=utf-8;",
"dataType" : "json",
success: function(xData, status)
{
alert(xData.d);
}
,error : function(xhr)
{
alert(xhr.responseText);
}
});