jQuery实现复选框的全选反选和不选功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery实现复选框的全选反选和不选功能相关的知识,希望对你有一定的参考价值。
<!doctype html><html> <head> <meta charset="utf-8"> <title>jQuery实现复选框的全选、反选和不选功能</title> <script type="text/javascript" src="jquery-1.11.3.min.js"></script> </head> <style type="text/css"> .shows{ display: none; } </style> <body> <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.不再犹豫</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"> <script type="text/javascript"> $("#all").click(function(){ if(this.checked){ $("#list :checkbox").prop("checked", true); }else{ $("#list :checkbox").prop("checked", false); } }); </script> </body> </html>
——————————
以上是关于jQuery实现复选框的全选反选和不选功能的主要内容,如果未能解决你的问题,请参考以下文章