Firefox tabindex在表标题中不起作用

Firefox tabindex在表标题中不起作用,firefox,html-table,caption,tabindex,Firefox,Html Table,Caption,Tabindex,我创建它是为了显示我遇到的一个问题,即在表标题中完全忽略了选项卡索引,并且它们无法对输入进行选项卡设置。我做错什么了吗?有快速解决办法吗 <table id="whyIsFireFoxDumb"> <caption> <input type="text" tabindex="1" /> <input type="text" tabindex="2" /> <button type="submit" tabindex

我创建它是为了显示我遇到的一个问题,即在表标题中完全忽略了选项卡索引,并且它们无法对输入进行选项卡设置。我做错什么了吗?有快速解决办法吗

<table id="whyIsFireFoxDumb">
  <caption>
    <input type="text" tabindex="1" />
    <input type="text" tabindex="2" />
    <button type="submit" tabindex="3">Submit</button>
  </caption>
  <tr id = "whyISFIREFOXSODUMB">
    <td><input type="text" tabindex="4" /></td>
    <td><input type="text" tabindex="5" /></td>
    <td><input type="text" tabindex="6" /></td>
    <td><button type="submit" tabindex="7">Submit</button></td>
  </tr>
</table>

提交
提交