I am developing in phonegap, and I have a chat window with an input field like so:
<div class="chatWindow"></div>
<form>
<input type="text">
<input type="submit" onclick="sendChatMsg();return false;">
</form>
この属性title="Search"
をテキスト入力フィールドに追加すると、標準の「移動」ボタンではなく、iPad キーボードに「検索」ボタンが表示されることがわかりました。ただし、このボタンには「送信」または「戻る」という名前を付けたいと思います。
フィールドが<form>
タグ内にない場合、戻るボタンが自動的に選択されますが、テキスト入力は送信ボタンにリンクされません。
何か案は?