我这里有这个表单,需要用户输入一个值。
<form id="result" name="result" action="/HelloStruts2/views/register.action" method="post">
<label>UserName</label>
<input type="text" name="userBean.username" value="" id="result_userBean_username"/>
<input type="submit" id="registerSubmit" value="Submit"/>
</form>
这是我的脚本。
$(document).ready(function(){
$('#registerSubmit').live('click',function(){
alert("XD");
$.ajax({
//this is the php file that processes the data and send mail
url: "register.action",
//GET method is used
type: "POST",
//pass the data
//Do not cache the page
cache: false,
//success
success: function (html) {
//if process.php returned 1/true (send mail success)
$('#result').html(html);
}
});
})
})
当我提交表单而不是发送请求时,表单正在成功验证,整个页面正在重新加载或刷新,我该如何防止这种情况发生?
更新 我已经用这个更新了我的脚本。
$(document).ready(function(){
$('#result').on('submit',function(e){
e.preventDefault();
$.ajax({
//this is the php file that processes the data and send mail
url: "register.action",
//GET method is used
type: "POST",
//Do not cache the page
cache: false,
//success
success: function (html) {
$('#content').html(html);
}
});
})
})
但是当我第二次单击该按钮时,页面正在重新加载而不是发送请求