私は個人的にキーボードを使う習慣があります。ログインフォームなどは通常、最後までタブで区切られています。
例えばフォームがある場合
<input name="username" type="text"><input name="password" type="text"><input name="rememberme" type="checkbox">
Chrome や FireFox では、tabindex が設定されていない場合でも、Tab キーを使用して最後まで移動できます。
Safari はユーザー名 => パスワード => から機能しません。 。 。その場合、タブはチェックボックスに到達できません。
最初は tabindex の問題だと思いましたが、タブインデックスを追加した後も Safari が動作しません。
いくつか検索した後、 答えを見つけました
抜粋は次のとおりです:
If you read the WebCore source you'll see that there is full support for the tabindex property for all sorts of different types of elements.To turn the feature on and tab to all types of form elements in Safari, go to the System Preferences keyboard shortcuts and check the "Turn on full keyboard access" check box.
それでは。 。 。わかりました。 。 。