$("#btn4").click(function(){
$("[name='checkbox']").each(function(){
if($(this).attr("checked"))
{
$(this).removeAttr("checked");
}
else
{
$(this).attr("checked",'true');
}
});
});
鍏ㄩ?br />$("#btn1").click(function(){
alert('');
$("[name='checkbox']").attr("checked",'true');//鍏ㄩ?br /> });
閫変腑鎵鏈夊鏁?br />$("#btn3").click(function(){
alert('');
$("[name='checkbox']:even").attr("checked",'true');//閫変腑鎵鏈夊鏁?br /> });

]]>