本文实例讲述了jquery操作checkbox的常用方法。分享给大家供大家参考,具体如下:
做系统的过程中,与checkbox 复选框打交道,是难免的,而且在每个系统中,简直是必不可少的一道菜,通常的操作有一下几种:
1.用jquery 全部选择checkbox
2.用jquery 全部取消checkbox
3.用jquery 实现checkbox 反选
4.用jquery 获取所有已选择checkbox的值。
现在将这些常用的操作总结在一个例子中,方便以后查询,不愿意看代码的,也可以下载源码运行测试。
<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>yihaomen.com jquery checkbox 测试</title> <link rel="stylesheet" type="text/css" href="/static/css/global.css" rel="external nofollow" > <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(function() { /*全选或全不选*/ $("#controlall").click(function() { $('input[name="selectdivision"]').attr("checked",this.checked); }); var $subBox = $("input[name='selectdivision']"); $subBox.click(function(){ $("#controlall").attr("checked",$subBox.length == $("input[name='selectdivision']:checked").length ? true : false); }); /*反选*/ var reverseBtn=$('#reverseselect'); reverseBtn.click(function(){ $("[name='selectdivision']").each(function(){ if($(this).attr("checked")) { $(this).removeAttr("checked"); } else { $(this).attr("checked",'true'); } }) }); /*得到所有值*/ var getvalueBtn=$('#getValButton'); getvalueBtn.click(function(){ var val_array=[]; $("input:checkbox[name=selectdivision]:checked").each(function(){ val_array.push(parseInt($(this).val())); }); alert(val_array.join()); }); }); </script> </head> <body> <div> <table style="border:1px dashed #ccc;margin-top:5px;" class="crmgrid_popwindow" id="division_table"> <tr style="background-color:#F9F9F9;"> <td><input type="checkbox" id="controlall" name="controlall" />全选/全不选</td> <td> <input type="button" id="reverseselect" value="反选" /> <input type="button" id="getValButton" value="得到选择的值" /> </td> </tr> <tr> <td><input type="checkbox" name="selectdivision" value="1"/></td> <td>1</td> </tr> <tr> <td><input type="checkbox" name="selectdivision" value="2"/></td> <td>2</td> </tr> <tr> <td><input type="checkbox" name="selectdivision" value="3"/></td> <td>3</td> </tr> <tr> <td><input type="checkbox" name="selectdivision" value="4"/></td> <td>4</td> </tr> <tr> <td><input type="checkbox" name="selectdivision" value="5"/></td> <td>5</td> </tr> <tr> <td><input type="checkbox" name="selectdivision" value="6"/></td> <td>6</td> </tr> </table> </div> </body> </html>
源码点击此处本站下载。
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery表格(table)操作技巧汇总》、《jQuery页面元素操作技巧汇总》、《jQuery常见事件用法与技巧总结》、《jQuery form操作技巧汇总》、《jQuery常用插件及用法总结》、《jQuery扩展技巧总结》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。