反選
全選
選中所有奇數
$("#btn4").click(function(){
$("[name='checkbox']").each(function(){
if($(this).attr("checked"))
{
$(this).removeAttr("checked");
}
else
{
$(this).attr("checked",'true');
}
});
});
$("[name='checkbox']").each(function(){
if($(this).attr("checked"))
{
$(this).removeAttr("checked");
}
else
{
$(this).attr("checked",'true');
}
});
});
全選
$("#btn1").click(function(){
alert('');
$("[name='checkbox']").attr("checked",'true');//全選
});
alert('');
$("[name='checkbox']").attr("checked",'true');//全選
});
選中所有奇數
$("#btn3").click(function(){
alert('');
$("[name='checkbox']:even").attr("checked",'true');//選中所有奇數
});
alert('');
$("[name='checkbox']:even").attr("checked",'true');//選中所有奇數
});