一個表中的每一TD我哈瓦2個表添加title屬性基於值
<table class="first">
<thead>
<th> header1</td>
<th> header2 </th>
</thead>
<tbody>
<tr>
<td>hi</td>
<td>hello</td>
</tr>
</tbody>
</table>
<table class="second">
<thead>
<th> header1</td>
<th> header2 </th>
</thead>
<tbody>
<tr>
<td>hi</td>
<td>hello</td>
</tr>
<tr>
<td>hi</td>
<td>hello</td>
</tr>
</tbody>
</table>
現在我的jQuery部分:
var trainingInstanceIds = ${trainingInstance.id};
alert(trainingInstanceIds) // which prints say 1,9,
現在我想第二個表的每一個TD有在trainingInstanceIds給出的標題作爲值
基本上,我想是這樣的
<table class="second">
<thead>
<th> header1</td>
<th> header2 </th>
</thead>
<tbody>
<tr>
<td title="1">hi</td>
<td title="9">hello</td>
</tr>
<tr>
<td title="1">hi</td>
<td title="9">hello</td>
</tr>
</tbody>
</table>
trainingInstanceIds的值和td的數量會發生變化。
這裏我想給已經創建的表添加標題
怎麼辦?
$.each(trainingInstanceIds, function(index, value) {
});
如果它的動態創建的,你可以在首先生成表的代碼做呢? – 2012-08-14 10:18:07
我想爲已經創建的表添加標題 – monda 2012-08-14 10:19:44