我是jquery的新手。可能是我的查询看起来有点愚蠢,但实际上我并不了解如何实现以下的事情。
无论如何,这是我的疑问:
我有一些动态表格如下:
<table id='example1'>
<thead>
<tr>
<th>one</th>
<th>two</th>
<th>three</th>
</tr>
</thead>
</table>
<table id='example2'>
<thead>
<tr>
<th>one</th>
<th>two</th>
<th>three</th>
</tr>
</thead>
</table>
我正在尝试如下:
$($('table').attr('id') ' thead th').each( function () {
}
上面看似错误,有人可以纠正吗?
我需要达到如下目标:
$( dynamicTableId thead th).each(function () {
}