我有一个javascript方法片段如下
var tempUrl = "http://A.com:8081/TestService/serviceMethod";
jQuery.ajax({
url:tempUrl,
type: 'POST',
data:"getDatareq="+encodedata,
contentType: 'application/json',
dataType:'text',
success:function(result){
jQuery(".loadingMsg").html("");
jQuery(".loadingMsg").hide();
getApptDtls(result);
},
complete:function(result){
jQuery(".loadingMsg").html("");
jQuery(".loadingMsg").hide();
jQuery(".popupContent").show();
jQuery.unblockUI();
我将此方法包含在一个 html 中,该 html 托管在另一个服务器中,其 url为 http://B.com:8081
当我运行此 html 并调用此方法时,A.com 中的 serviceMethod 没有受到打击。这里可能是什么问题?
任何帮助是极大的赞赏。