ie8 ajax 跨域问题
2021-06-28 06:03
标签:post dom count 秘密 cat var data main tty 最近做了个客服端要通过ocx获得初始化数据就是一个html页面镶嵌在一个c++做的程序里面通过c++做的程序的一个按钮来打开我的这个html页面但是页面中的ajax就是用不了又不报错 后来加入了crossDomain: false就可以用了: function bt2() { var dat = result.basisList; ie8 ajax 跨域问题 标签:post dom count 秘密 cat var data main tty 原文地址:http://www.cnblogs.com/niuxi/p/7145139.html
$.ajax({
type: "post",
url: account + "/dcms/api/v1/basis/queryList",
contentType: "application/json; charset=utf-8",
dataType: "json",
crossDomain: false,//解决跨域问题
cache: false,
data: JSON.stringify({
"token": token,
"basisType": $("#basisType option:selected").val(),
"basisLevel": $("#ss option:selected").val()
}),
success: function (result) {
var str = ""
var basisLevel
if (dat.length > 0) {
for (var i = 0; i if (dat[i].basisLevel == 0) {
basisLevel = ‘[公开]‘
}
if (dat[i].basisLevel == 1) {
basisLevel = ‘[内部]‘
}
if (dat[i].basisLevel == 2) {
basisLevel = ‘[秘密]‘
}
if (dat[i].basisLevel == 3) {
basisLevel = ‘[机密]‘
}
if (dat[i].basisLevel == 4) {
basisLevel = ‘[绝密]‘
}
str += ‘ ‘
‘ + basisLevel + dat[i].basisContent + ‘
}
}
$("#basisContent").empty();
$("#basisContent").append(str);
},
error: function (result) {
}
})
}
上一篇:Java的一些基本术语
下一篇:net2:类,事件与委托