我有一个帖子回到我正在运行的服务器上,它非常简单,适用于chrome和firefox。但由于某种原因,IE返回无效的参数错误。在调试时,我无法找到解释哪个参数无效。我不确定发生了什么。我猜测jQuery的版本可能有一个bug,因为它是1.7.2。我没有在旧版本的IE中尝试过它。这是帖子:Selected只是一个id数组。有什么想法吗?
var response = jQuery.post('#',
{ 'ids': JSON.stringify(selected), 'status' : true},
function() {
//alert('success');
})
.done(function() {
alert('second success');
initStatusDialog();
})
.fail(function(req, status, error) {
console.log(req);
console.log(status);
console.log(error);
//alert(status);
alert('error');
}, 'text');