我正在尝试通过 ajax 提交表单,无论我提交什么都会按照正常的发布功能在 IE7 中触发页面重新加载。
我试过的
// Example function / attempt 0
<script>
function FunctionName() {
$.ajax({
type: "POST",
blah: "blah"
});
return false;
}
</script>
// attempt 1
<form onsubmit="return FunctionName()">
// attempt 2
<form onsubmit="FunctionName(); return false;">
// attempt 3
$("#form id").submit(FunctionName);
我最终得到的是通过 ajax 输入的乱码和每次刷新页面。