gpt4 book ai didi

jquery - 获取表中选定行的 ID -HTML

转载 作者:太空狗 更新时间:2023-10-29 14:40:10 26 4
gpt4 key购买 nike

我的 MVC 应用程序中有一个表。我想获取所选行的 ID。我使用 jQuery 捕获了 tr 的点击事件。表格示例如下所示

<table id="resultTable">
<tr id="first">
<td>c1</td>
<td>c2</td>
</tr>
<tr id="second">
<td>c3</td>
<td>c4</td>
</tr>
</table>

我正在使用以下脚本来访问行点击事件

 $(document).ready(function () {      
$('#resultTable tr').click(function (event) {
alert(this.); //trying to alert id of the clicked row

});
});

但它不起作用。如何获取选定的行 ID。??有什么想法吗??

最佳答案

$(document).ready(function () {      
$('#resultTable tr').click(function (event) {
alert($(this).attr('id')); //trying to alert id of the clicked row

});
});

关于jquery - 获取表中选定行的 ID -HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5142422/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com