兩種方法,第一種用jquery的toggle,但這種方法有瑕疵,其它的倒是全選了,可它自己本是卻不能選擇...只能用第二種方法bind一個(gè)click事件,然后判斷了
10年積累的成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶(hù)對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶(hù)得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有寬城免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>
$(function(){
//方法一
/*
$("#checkAll").toggle(
function(){
$.each($("input[type='checkbox']"), function(){$(this).attr("checked",true);},
function(){$.each($("input[type='checkbox']"), function(){$(this).attr("checked",false);}
);
*/
//方法二
$("#checkAll").bind("click",function(){
if($("#checkAll").attr("checked")){
$("#margin_total").hide();
$.each($("input[type='checkbox']"), function(){$(this).attr("checked",true);});
}else{
$("#margin_total").show();
$.each($("input[type='checkbox']"), function(){$(this).attr("checked",false);});
}
})
})
</script>
<html>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th><input id="checkAll" type="checkbox" /></th>
<th> - </th>
<th> - </th>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td> - </td>
<td> - </td>
</tr>
</table>
</body>
</html>
當(dāng)前標(biāo)題:jquerycheckbox全選和反選
瀏覽地址:http://jinyejixie.com/article10/peosgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供、面包屑導(dǎo)航、品牌網(wǎng)站制作、做網(wǎng)站、服務(wù)器托管、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)