とにかく、HTMLフォームのタブオーダーから要素を除外する方法はありますか。
だから私が以下を持っているなら
<input type=text name=username>
<input type=text name=password>
<input type=button name=forgotpassword>
<input type=submit name=login>
Tabindexを1、2、3、4として使用できることは承知していますが、すべてのフィールドに番号を付ける必要はありません。私のアプリケーションは動的にフィールドを作成しています。
ありがとう
ジェイソン
tabindex
を-1に設定すると、要素がタブ解除可能になります(それがWordの場合):)
<input type="text" name="username" tabindex="-1" />