2013-10-11 46 views
1

如何在用戶使用PhoneGap和JavaScript/jQuery時按下「Next」或「Prev」按鈕來捕捉事件?如何在使用PhoneGap/Cordova時在android和iOS中捕捉「Next」和「Prev」按鈕?

我發現了幾個相關的問題,但解決的辦法是在原生代碼:

how to catch 'next' button on soft keyboard of Android

Android Soft keyboard action button

enter image description here

+0

爲什麼?也許,還有另一種解決方案。這些按鈕用於輸入元素之間的導航。 –

+1

因爲當我在我的應用程序的登錄屏幕上,並按下密碼文本字段中的「下一步」按鈕時,它會將用戶帶到不同的屏幕。我想阻止這種情況 – Kenci

+0

這些按鈕用於頁面之間的導航而不是用於在輸入元素之間導航?這個改變了嗎?認爲這將有所幫助:http://stackoverflow.com/questions/3895710/explicitly-exclude-an-html-element-from-the-tab-order –

回答

0

它會自動工作,當它獲得連續2個文本框

</div> 
    <ul data-role="listview" id="singup-form" class="tab" > 
    <li> 
    <input type="email" name="text-6" id="email-id" value="" placeholder="Email Address"> 
    </li> 
    <li> 
    <input type="password" name="text-6" id="password-id" value="" placeholder="Password"> 
    </li> 
    </ul> 

點擊here!這會幫助你..

+1

這是幹什麼的? – Kenci

相關問題