0

我有以下输入字段的表格。当我单击第一个文本框时,焦点转移到下一个文本框。我在 phonegap 中使用此代码并在 iphone(ios 5)上运行它。请帮帮我..

        <form id="createAccount" name="regForm">
            <input type="text" name="first_name" id="fname" placeholder="First Name" style="height:40px;" >
            <input type="text" name="last_name" id="lname" placeholder="Last Name" style="height:40px;">

            <input type="email" name="email" id="email" placeholder="Email" style="height:40px;">
            <input type="password" name="password" id="RegPassword" placeholder="Password" style="height:40px;">

         </form>
4

1 回答 1

0

首先尝试删除错误的内部表单,然后在每个输入上添加 tabindex。此外,您使用任何库吗?(jQuery ...?)

于 2012-10-30T23:08:35.253 回答