gpt4 book ai didi

jquery 单击 tr 会影响所有行,甚至是 thead 行

转载 作者:行者123 更新时间:2023-12-01 07:06:10 27 4
gpt4 key购买 nike

下面是我的代码,运行良好。我可以单击表格中的一行,它就会执行我想要的操作。问题是它也会在 <TH> 上触发。我不知道如何使用类似 .not('thead tr') 的东西有了这个功能。我需要将 TH 转换为一种排序,这样我就需要防止它在行单击时触发。

$('#upgrades').on("click", "#upgrades tr", function () {
*** do stuff
});

最佳答案

尝试 ":not(thead) tr" - .not()

这是你想要的吗?这样您就无法单击 thead

中的任何 tr

$('#upgrades').on("click", ":not(thead) tr", function() { 
console.log("clicked")
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="upgrades">
<thead>
<tr>
<td>cant click</td>
</tr>
</thead>
<tbody>
<tr>
<td>can click</td>
</tr>
</tbody>
</table>

关于jquery 单击 tr 会影响所有行,甚至是 thead 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44507251/

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