0

我有一个索引页面,我通过单击链接在该页面的 div 中加载多个页面,其中一些是表单(页面)。当我点击提交时,信息被正确处理并存储在数据库中,但页面消失,因此我无法看到一些有用的信息,例如表单验证后生成的错误。我希望页面在加载后不应该消失。只有当我单击该页面的链接时,该页面才能显示在同一 div 中。

我正在使用 php、javascript、jquery、MySqL。

有什么帮助吗??

4

1 回答 1

2

That is the default behavior of forms submit. If I am not mistaken you need to prevent the default behavior on that form submit callback. If the considering form have an id of formID then You can do this

$('#formID').submit(function(e){
   //prevent default Behaviour
   e.preventDefault();

});

And in that case you have to use $.ajax to submit form data into server without reloading the page.

于 2012-06-14T09:17:55.177 回答