js 代码function call2() { $.support.cors = true; $.ajax({ url: http://localhost:21179/WebService1.asmx/Test, type: POST, dat
如果想选定的网站可能跨域访问,修改配置如下
js 代码
function call2() {
$.support.cors = true;
$.ajax({
url: “:21179/WebService1.asmx/Test”,
type: “POST”,
dataType: “json”,
contentType: ‘application/json’,
data: “{‘user’:{‘Name’:’aaa’,’Sex’:’男’,’ID’:1}}”,
success: function (d) {
alert(“success! “);
},
error: function (e) {
}
});
}
用的时候要注意,,这样用可能有风险,具体什么风险还不清楚!!!
有一篇文章可以作为参考
?tag=/Access-Control-Allow-Origin