gpt4 book ai didi

javascript - 如何在双击时取消选中单选按钮?

转载 作者:搜寻专家 更新时间:2023-11-01 05:23:14 25 4
gpt4 key购买 nike

我想要这个功能:

当用户点击已经选中的单选按钮时,应该取消选中它。

我正在尝试这段代码,但没有成功。

$(document).on('mouseup','className',function(){
if ($(this).is(':checked')){
$(this).prop('checked', false);
}
});

最佳答案

你可以试试

$(document).on('dblclick','.className',function(){
if(this.checked){
$(this).prop('checked', false);
}
});

演示:Fiddle

关于javascript - 如何在双击时取消选中单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22781256/

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