一。在html的checkbox里,選中的話會有屬性checked="checked"。
如果用一個checkbox被選中,alert這個checkbox的屬性"checked"的值alert($"#xxx".attr("checked")),會打印出"true",而不是"checked"!
如果沒被選中,打印出的是"undefined" 。覺得很奇怪是嗎?繼續(xù)看下去~
不要嘗試去做這樣的判斷:if($"#xxx".attr("checked")=="true")//這樣是錯誤的
因為這么做是錯的,jQuery的API手冊上寫,attr(name)的返回值是object。所以,應(yīng)該是if($("#xxx").attr("checked")==true)。
判斷這個值$("input[name='weibo_count']").attr("checked");這樣也行
<SCRIPTLANGUAGE="JavaScript">
<!--
$("document").ready(function(){
$("#btn1").click(function(){
$("[name='checkbox']").attr("checked",'true');//全選
})
$("#btn2").click(function(){
$("[name='checkbox']").removeAttr("checked");//取消全選
})
$("#btn3").click(function(){
$("[name='checkbox']:even").attr("checked",'true');//選中所有奇數(shù)
})
$("#btn4").click(function(){
$("[name='checkbox']").each(function(){
if($(this).attr("checked"))
{
$(this).removeAttr("checked");
}
else
{
$(this).attr("checked",'true');
}
})
})
$("#btn5").click(function(){
var checks = "";
$("input[name='checkbox[]']").each(function(){
if($(this).attr("checked") == true){
checks +=$(this).val() + "|";
}
})
})
//-->
</SCRIPT>
</HEAD>
<BODY>
<form name="form1" method="post"action="">
<inputtype="button" id="btn1" value="全選">
<inputtype="button" id="btn2" value="取消全選">
<inputtype="button" id="btn3" value="選中所有奇數(shù)">
<inputtype="button" id="btn4" value="反選">
<inputtype="button" id="btn5" value="獲得選中的所有值">
<br>
<inputtype="checkbox" name="checkbox[]"value="checkbox1">
checkbox1
<inputtype="checkbox" name="checkbox[]"value="checkbox2">
checkbox2
<inputtype="checkbox" name="checkbox[]"value="checkbox3">
checkbox3
<inputtype="checkbox" name="checkbox[]"value="checkbox4">
checkbox4
</form>
愛華網(wǎng)



