gpt4 book ai didi

javascript - jquery复选框无法点击

转载 作者:太空宇宙 更新时间:2023-11-04 15:35:21 24 4
gpt4 key购买 nike

只有在单击该行时我才能选中该复选框,但我想以两种方式都单击它。这是我正在使用的方法:

$("table tr").click(function(){
var id=$(this).attr("id");
//This is because i dont want first row to be able to select
if(typeof(id)!="undefined"){
if($("#select-"+id).attr("checked")!="checked")
$("#select-"+id).attr("checked","checked");
else
$("#select-"+id).removeAttr("checked");
}
});

您也可以在这里实时查看 sabrio.eu5.org/admin.php用户名:admin密码:admin

最佳答案

我最好的猜测是您的 TR 单击函数正在取消单击复选框的默认行为。因此,当您单击复选框时,就好像它被单击了两次。

尝试像这样向您的复选框添加点击事件...

$("[type='checkbox']").click(function(e) {
e.stopPropagation();
});

您需要将选择器更改为适合您的 html 的内容

See here for a working example

关于javascript - jquery复选框无法点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9537578/

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