私はこのようなHTMLを持っています
<table>
<tr>
<td>
<select>
<option>12AM</option>
<option>11PM</option>
</select>
</td>
<td>
<select>
<option>12AM</option>
<option>11PM</option>
</select>
</td>
</tr>
</table>
各 tr 内の select タグに id 属性を割り当てたいと思います。次のjqueryは動作していないようです
function addRow()
{
var rowCount = 0;
$('#SHourDivTable tr').each(function() {
if(rowCount != 0)
{
console.log($(this).html());
$(this).add("select:eq(0)").attr("id", rowCount);
$(this).add("select:eq(1)").attr("id", rowCount);
}
rowCount = rowCount + 1;
});
}
これを実行すると、select タグではなく id 属性が tr に割り当てられます。