在我的应用程序中,我有一个这样的登录表单
<div id="container">
<form name="login" id="login" method="post" action="">
<input name="email" type="text" class="label" id="email" placeholder="Enter email...">
<input name="password" type="password" class="label" id="password" placeholder="Enter password...">
<input type="submit" name="submit" id="submit" value="Login">
<a href="register.html" class="sign">Sign Up</a>
</form>
</div>
在触摸设备上,当我点击屏幕时,焦点会离开表单字段(输入、按钮、链接)。这发生在黑莓和安卓设备上,没有在iphone上尝试过。
如何防止焦点离开表单域?我正在用 phonegap 构建应用程序。