我在 js 中有一个函数,在 chrome 中可以正常工作。但不能在 IE 中工作
<script type="text/javascript">
function save () {
$.ajax({
url: 'somepage.aspx',
data: {
cmd: "add",
},
type: 'POST',
async: true,
cache: false,
success: function (data, textStatus, xhr) {
// somelogic
}
});
}
</script>
在 Chrome 中工作正常,但在 ie 中给出此错误:
SCRIPT257:由于错误 80020101,无法完成操作。
jquery-1.7.1.min.js,第 2 行字符 11497
提前致谢
我忘了删除,我在数据数据中有几个变量:{ cmd:"add", itemId: $("#someInputId").val(),anotherId: $("#someInputId2").val()} 编辑:
<script type="text/javascript">
function save () {
$.ajax({
url: 'somepage.aspx',
data: {
cmd:"add",
itemId: $("#someInputId").val(),
anotherId: $("#someInputId2").val()
},
type: 'POST',
async: true,
cache: false,
success: function (data, textStatus, xhr) {
// somelogic
}
});
}
</script>