我很困惑为什么这不起作用并且无法调试
我有一组按属性值分组的复选框,并且在每个组的脚下都有一个 checkall 类,当我单击它时,我想将其他复选框切换到相同的状态
jQuery
$(function () {
$('.checkall').click(function () {
var myactivemonth=$(this).attr("data-mymonth");
console.log(myactivemonth);
var myactivebox="a_"+myactivemonth;
$('checkbox[data_mymonth=myactivemonth]').attr('checked','checked');
});
html
<input id="alloInv" class="tip_trigger" type="checkbox" data-mymonth="a_October2012" title="13.94" value="2018441" name="alloInv">
<input id="alloInv" class="tip_trigger" type="checkbox" data-mymonth="a_October2012" title="10.94" value="201845" name="alloInv">
<input class="checkall" type="checkbox" data-mymonth="October2012">
它看起来一切正常,但方框没有打勾:(