我有这个 html 表单,提交按钮有一些奇怪的行为。
当我单击“提交”按钮时,它一直处于郁闷状态,但没有提交表单。但是,如果表单是通过其他方式提交的,比如按下Enter
键盘,或GO
在 Mobile Safari (iDevice) 上,一切正常。我正在使用 jQuery 移动顺便说一句。
谁能明白为什么会这样?
HTML
<div class='login' id='login'>
<div class='login-header'>Please Login</div>
<div class='alert-error' id='login-error' style='display:none;'>
Please check your username and password and try again.
</div>
<form id='login_form'>
<br>
<p class='label'>Username</p>
<input type='text' name='username'>
<p class ='label'>Password</p>
<input type='password' name='password'>
<button type='submit' data-theme='a' id='login-button'>Login</button>
</form>
</div>
JS
$('#login_form').submit(function(e) {
e.preventDefault();
e.stopPropagation();
var serializedFormData = $(this).serialize();
// blah blah ajax form submit
});
});
编辑
看来我可以通过切换以下几行来解决我的问题:
<button type='submit' data-theme='a' id='login-button'>Login</button>
和
<input type='submit' value='Submit'>.
任何知道为什么这样做的人都将获得声誉。