假设有6个th
元素
<thead>
<tr><th></th><th></th><th></th> <th></th><th></th><th></th></tr>
</thead>
我只想迭代前 4 个。如何获得这些元素的可迭代列表,以便可以执行以下操作:
while (i < myLimit) {
th = thlist[i];
// do something : if somecondition myLimit +=1;
i++;
}
return i;
这些th
元素被装饰了,其中一些元素使用 style="display:none" 进行了装饰,我试图弄清楚在th
任意选择的元素的左侧有多少这样的装饰元素。
注意:在迭代过程中可能需要增加 myLimit !!