jquery checkbox操作

选中

$("input[name='drawId']").attr('checked','true');

不选中

$("input[name='drawId']").removeAttr("checked");

循环所有选中的

$("input[name='drawId']:checked").each(function() {

});

相关推荐