私は2つのテーブルを持っています
<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,
今、2 番目のテーブルのすべての 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) {
});