JQuery对于CheckBox操作

$("[name='checkbox']").attr("checked",'true');//全选 
$("[name='checkbox']").removeAttr("checked");//取消全选
$("[name='checkbox']:odd").attr("checked",'true');//选中所有偶数 
$("[name='checkbox']:even").attr("checked",'true');//选中所有奇数
$("[name='checkbox']").attr("id");               //获取ID值
$("[name='checkbox']").attr("class");               //获取Class值

你可能感兴趣的:(checkbox)