gpt4 book ai didi

javascript - 如何使用 jquery 获取以值开头的类并向每个类中的复选框添加事件

转载 作者:行者123 更新时间:2023-12-03 07:35:19 26 4
gpt4 key购买 nike

我有一组类(class),全部以 marg- 开头。类似于下面的模式:

'<div class="marg-1 row-">'+
'<p class="subject-math col-6">Mathematics</p>'+
'<div class="check-div col-1" > <input type="checkbox" class="math-check" /></div>'+
'</div>'+
'<div class="marg-2 row-">'+
'<p class="subject-eng col-6">English</p>'+
'<div class="check-div col-1" > <input type="checkbox" class="eng-check" /></div>'+
'</div>'+
'<div class="marg-3 row-">'+
'<p class="subject-phy col-6">Physics</p>'+
'<div class="check-div col-1" > <input type="checkbox" class="phy-check" /></div>'+
'</div>'

我想编写 jquery 代码来定位它们并将 onselect 事件添加到其中的复选框。

我该怎么做?

最佳答案

您应该查看 Jquery 选择器文档。

$('div[class^="marg-"]').find('checkbox').bind('change', function() {
// Your code here...
alert($( this ).val());
});

关于javascript - 如何使用 jquery 获取以值开头的类并向每个类中的复选框添加事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35638878/

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