开发者

From tabindex include <selects>

开发者 https://www.devze.com 2023-01-05 15:08 出处:网络
Is it possible to tab to a <select> element? I am creating a rather intensive form that would greatly benefit from being able to tab through everything not just the text fields.

Is it possible to tab to a <select> element? I am creating a rather intensive form that would greatly benefit from being able to tab through everything not just the text fields.

<input type="text" name="date" value="00/00/0000" tabindex="1" /&开发者_开发百科gt;
<select name="hour" tabindex="2">
    <option value="1">01</option>
    <!-- Blah more -->
</select>
&nbsp;:&nbsp;

<select name="minute" tabindex="3">
    <option value="0">00</option>
    <!-- Blah -->
</select>

Above code does not work in Firefox (at least for me).

0

精彩评论

暂无评论...
验证码 换一张
取 消