jQuery 使用 ID 选择每行中的第三个、第四个和第五个 TD
我在选择表格中正确的单元格时遇到一些困难。 我有一张足球比赛桌。每个表都以 ID“game”开头,然后是序列号,即:id='game122238'
。
每个表有两行。第一行有 5 个单元格。 第二个,我有一个团队。 第三次,我得到了结果。 第四,我有第二支球队。
我成功选择了所有表格:
$('table[id^=game]');
但后来我陷入困境。我怎么能: A. 将所有“主队”放入一个阵列中。 B. 将所有结果放入另一个数组中。 C. 让所有“客队”进入第三阵。
谢谢!
I am having some difficulties selecting the proper cells in a table.
I have a soccer games tables. Each table starts with ID 'game' and then the serial number, i.e: id='game122238'
.
Each table has two rows. On the first row, I have 5 cells.
On the second one, I have one team.
On the third one, I have the result.
On the Fourth, I have the second team.
I succeeded selecting all tables:
$('table[id^=game]');
But then I got stuck. How could I:
A. getting all 'home teams' into one array.
B. getting all results in another array.
C. getting all 'away teams' into third array.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 nth Child 选择器
如果您能够提供您的示例HTMl 我也许可以举一个更具体的例子。
You need to use the nth Child selector
If you are able to provide a sample of your HTMl I might be able to give a more concrete example.
使用children() 迭代tr 和td 以获得所需的值。或者另一种方法是:
如果你有 osme 示例表,会更容易。
Use children() to iterate through the tr's and td's to get the values you want. Ort another way would be:
Would be easier, if you've got osme example tables.