js代码如下:
$.ajax({
type: "POST",
url: actionUrl,
dataType: "json",
data:{command: 'QUERY'},
success: function (data) {
console.log(data);
},
error:function(xmlHttpRequest,b ,c){
alert(c);//提示 no transport
}
});
解决办法是在调用之前增加:jQuery.support.cors = true;
本文介绍了一种解决使用jQuery的Ajax请求出现跨域问题的方法。通过设置jQuery的支持跨域属性为true,可以有效解决跨域带来的notransport错误提示。
1289

被折叠的 条评论
为什么被折叠?



