我有一个包含 2-3 个表格的页面。在这些表中,我想更改位于其中的特定列的文本<thead>
以及每行中的值<td>
,并且我想id
从每一行中获取。
在性能方面,最快的方法是什么?
HTML
表格布局:
<table class="ms-viewtable">
<thead id="xxx">
<tr class ="ms-viewheadertr">
<th>
<th>
<tbody>
<tr class="ms-itmHover..." id="2,1,0">
<td>
<td>
<tr class="ms-itmHover..." id="2,2,0">
<td>
<td>
</table>
JavaScript
我开始的脚本:
$('.ms-listviewtable').each(function () {
var table = $(this);
$table.find('tr > th').each(function () {
//Code here
});
$table.find('tr > td').each(function () {
//Code here
});
我怎样才能得到身份证?这是做我想做的更好的方法吗?