私は以下のようなテーブルを持っています
<table >
<tr>
<th scope="col">EmpId</th><th scope="col">EmpName</th>
</tr>
<tr>
<td>1</td><td>ABC</td>
</tr>
<tr>
<td>2</td><td>DEF</td>
</tr>
</table>
"th" ではなく、テーブルの"td"要素のみの背景色を設定したい。私は試してみました
$("table").children("td").css('background-color', '#00ff00');
OR
$("table").children("tr").children("td").css('background-color', '#00ff00');
しかし、結果はありません。
私がやっている間違いを助けてください。
ありがとう