0
我使用以下輸入字段創建表單。當我在第一個文本框中單擊,焦點轉移獲取到明年textbox.i我在PhoneGap的使用此代碼,並在iPhone上運行它(IOS 5)。請幫我..文本框焦點在移動Safari(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>
我正在使用phonegap來製作iPhone應用程序。 – Pramod
這是一個phonegap應用程序,它使用jquery,backbone.js和Zparse爲模板化視圖。 – Pramod