jQuery全选、反选与获取选中值

今天给大家分享一段基于jQuery的全选、反选与获取选中值。文章结合demo,代码简洁,基本覆盖选项选择操作的方方面面,希望可以帮到有喜欢前端的朋友们。

jQuery全选网页特效演示DEMO: http://www.sucaihuo.com/js/10.html
全选:
$("#selectAll").click(function () { 
   $("#list :checkbox,#all").attr("checked", true);   
});
全不选
$("#unSelect").click(function () {   
   $("#list :checkbox,#all").attr("checked", false);   
});
我们拿音乐网站的歌曲列表来讲述 jQuery全选、反选、不选及获取选中值
<ul id="list">  
   <li><label><input type="checkbox" value="1" /> 1.老男孩</label></li>  
   <li><label><input type="checkbox" value="2" /> 2.我最亲爱的</label></li>  
   <li><label><input type="checkbox" value="3" /> 3.邂逅</label></li>  
   <li><label><input type="checkbox" value="4" /> 4.心痛2013</label></li>  
   <li><label><input type="checkbox" value="5" /> 5.要爱爱</label></li>  
   <li><label><input type="checkbox" value="6" /> 6.怎么说我不爱你</label></li>  
</ul>  
<input type="checkbox" id="all" />  
<input type="button" value="全选" class="btn" id="selectAll" />  
<input type="button" value="全不选" class="btn" id="unSelect" />  
<input type="button" value="反选" class="btn" id="reverse" />  
<input type="button" value="获得选中值" class="btn" id="getValue" />

你可能感兴趣的:(jquery)