标签:
待整理......
关于checkbox
$("[name=‘checkbox‘]").attr("checked",‘true‘);//全选
$("[name=‘checkbox‘]").removeAttr("checked");//取消全选
$("[name=‘checkbox‘]:even").attr("checked",‘true‘);//选中所有奇数
反选
$("[name=‘checkbox‘]").each(function(){
if($(this).attr("checked")){
$(this).removeAttr("checked");
} else{
$(this).attr("checked",‘true‘);
}
});
获取值
$("#btn5").click(function(){
var str="";
$("[name=‘checkbox‘][checked]").each(function(){
str+=$(this).val()+";";
})
alert(str);
});
点击切换全选、全消
function chooseAll(){
var flag="checked";
if($("#chooseAll").attr("checked")!="checked"){
flag="false";
}
if(flag==‘false‘){
$("[name=‘checked‘]").removeAttr("checked");
}else{
$("[name=‘checked‘]").attr("checked",‘checked‘);
}
}
标签:
原文地址:http://www.cnblogs.com/wqlys/p/4935572.html