提交帖子并正确返回,但嵌套函数内的代码无法在IE6和IE7上执行。在IE8上运行正常,其他一切。
$(document).ready(function () {
$("form.add").submit(function () {
//code outside of .post function executes sucessfully
$.post("/index.php/basket/add_cart_item", {ajax: '1'}, function (data) {
alert('hello world!'); //Code inside does nothing in IE6 /7
});
return false;
});
});
[编辑:专注于问题的简化代码](nb:post返回成功,如firebug-lite所示)。 IE没有回应。 ??