gpt4 book ai didi

jquery - 获取选定行的id

转载 作者:行者123 更新时间:2023-12-01 05:01:52 25 4
gpt4 key购买 nike

我正在使用下面的 jquery 来获取选定的行 ID

<script src="../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
//MainContent_tbl
$(document).ready(function () {
$('#MainContent_tbl tr').click(function (event) {
alert(this.id); //trying to alert id of the clicked row

});
});



</script>

我的问题是我的表(MainContent_tb)不是静态的,我需要将其作为变量传递,任何建议或评论将不胜感激。

最佳答案

  $(document).ready(function () {
$('#MainContent_tbl tr').click(function (event) {
var elID = $(this).attr('id');
alert(elID);
});
});

这就是您要找的!

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

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