1

Testing in Chrome 23.0.1271.64m on Windows XP and Windows 7.

When tabbing through forms, if you click on a radio button, the tab index is reset and the tabbing starts over at the top of the page:

<input type="text">
<input type="text">
<input type="radio"><!-- click this radio and hit tab -->
<input type="text">
<input type="text">

IE7-10, Firefox and Opera all continue tabbing from the point of the clicked radio button. What is happening here in Chrome? Is there a trick to make Chrome behave as expected?

4

1 に答える 1

1

少し遅すぎますが、それでも。

ページコントロールをAutoPostBack設定するtrueと、ポストバックを開始した場合にコントロールに集中できなくなります。Page_Loadまたはでフォーカスを持つ要素を指定できますが、指定Page_Initしない場合、そのページはフォーカスが設定されていない状態で読み込まれます(更新パネルにもカウントされます)。

これを回避するにはAutoPostBack、デフォルトで適用しないようにしてください。適用しないと、長期的には多くの作業を節約できます。

于 2016-03-02T12:26:01.503 に答える