gpt4 book ai didi

javascript - 使用 jQuery 将点击事件添加到类中

转载 作者:行者123 更新时间:2023-11-30 15:51:19 25 4
gpt4 key购买 nike

我发现有几个问题的答案与此类似,我尝试了其中一些,但没有成功。可能我的情况有所不同,我想在单击其中任何一个时禁用其他复选框。如果第二次点击,则禁用。

编辑:

我有两个复选框,即; chk1chk2。如果 chk1 被选中 chk2 变为禁用,如果 chk2 被选中 chk1 变为禁用

HTML

<tr class="cart-item-row">
<td class="remove-from-cart">
<label class="td-title">Remove:</label>
<input type="checkbox" name="removefromcart" value="4392" tabindex="15" class="class2">
</td>
<td class="add-to-cart">
<label class="td-title">Buy Now:</label>
<input type="checkbox" name="addtocart" value="4392" tabindex="16" class="class2">
</td>

</tr>

JS

<script>
$(function () { // I am also adding class to checkbox through JS
$('.cart-item-row > td > input[type="checkbox"]').addClass("class2");
});
</script>
<script>
//$('input[class^="class"]').click(function () {
//$('.class2').unbind().click(function () {
$('.class2').click(function () {
var $this = $(this);

if ($this.is(".class2")) {
if ($this.is(":checked")) {
$(".class2").not($this).prop({ disabled: true, checked: false });

} else {
$(".class2").prop("disabled", false);
}
}
});
</script>

最佳答案

你有遗漏,你可以把你的 jquery 放在

$(文档).ready(函数(){}

关于javascript - 使用 jQuery 将点击事件添加到类中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39285919/

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