php – 动态tabindex

我有很多行,每行都有一列只有< input type =’text’/> , 像这样:

HTML

<table>
    <tr> 
        <td><input type="text" size="10"/></td>
        <td><input type="text" size="10"/></td>
        <td><input type="text" size="10"/></td>
    </tr>
    <tr>
        <td><input type="text" size="10"/></td>
        <td><input type="text" size="10"/></td>
        <td><input type="text" size="10"/></td>
    </tr>
</table>

PHP:

while(!$res->EOF)
{
       // then come another while() from other db consult
       while(!$res2->EOF)
       {
           // this create the dynamic columms.
       }
}

我正在从db结果创建这些行,并且列数是动态的,有时更多,有时更少.

我需要tabindex遵循当前列“垂直模式”.

我做了一个exp:Jsfiddle

有任何问题,请.

谢谢.

最佳答案 你需要知道你有多少行.您的标签索引将如下所示:

1    6    11
2    7    12
3    8    13
4    9    14
5    10   15

以下是获取每个单元格索引的公式:

tabindex=rowNum+(rowCount*colnumber)

我将把实施作为练习留给读者.

点赞