From tabindex include <selects>
问题 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" /> <select name="hour" tabindex="2"> <option value="1">01</option> <!-- Blah more --> </select> : <select name="minute" tabindex="3"> <option value="0">00</option> <!-- Blah --> </select> Above code does not work in Firefox (at least for me). 来源: https:/