最初に onload 関数を使用して動的に作成された次のテーブルがあります。
<div id="first">
<table class="joma" id="joma">
<tbody>
<tr>
<th>Id</th>
<th>V No</th>
<th>Biboron</th>
<th>Taka</th>
</tr>
<tr><td class="rid">1</td><td>sss</td><td>222</td><td class="cv">4</td></tr>
<tr><td class="rid">2</td><td>xxx</td><td>2333</td><td class="cv">4</td></tr>
</tbody>
</table>
</div>
<td class="rid">
ここで、対応する値が表示される をクリックできるようにする必要があります。この場合は 1 または 2 です。
どうすればいいですか?
次の方法を使用しました。
$(document).ready(function() {
$('.rid').click(function() {
alert(this);
});
});
$('.rid').click(function() {
alert(this);
});
私はこれで何も得ていません。