码迷,mamicode.com
首页 > 其他好文 > 详细

JQ 全选、全不选

时间:2016-10-31 21:19:48      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:else   click   ready   cti   checkbox   this   checked   att   read   

$(document).ready(function() {

$("#isalldebt").click(function()
{
if ($(this).attr("checked")) { // 全选

$("input[name=‘debt_type‘]").each(function(){
$(this).attr("checked", true);
});
}
else { // 取消全选

$("input[name=‘debt_type‘]").each(function(){
$(this).attr("checked", false);
});
}
});


});

=======================下面html代码 

 

<input id="1" name="debt_type" value="0" type="checkbox">

<input id="2" name="debt_type" value="1" type="checkbox">

<input id="3" name="debt_type" value="2" type="checkbox">

 

 

 

<input type="checkbox" id="isalldebt">
<label for="isalldebt" onclick="isalldebt()" >全选</label>

 

 


JQ 全选、全不选

标签:else   click   ready   cti   checkbox   this   checked   att   read   

原文地址:http://www.cnblogs.com/yangjinwang/p/6017147.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!