在用 jquery 1.4.2 的 $.ajax() 时:
1 2 3 4 5 6 7 8 9 10 11 |
$.ajax({ url: "updateRoles.action", data: form.serialize(), dataType: "json", success: function(msg){ }, complete: function(xhr,msg){ alert(msg); } }); |
在其他浏览器中表现的很好,但是在 IE(7/8) 下总报 parsererror 错误。在 jquery 中找到 parsererror,定位在 5989 行: 阅读全文 >>