利用jQuery实现CheckBox全选/全不选/反选的简单代码
jQuery有些版本中实现CheckBox全选/全不选/反选会有bug,经测试jquery-1.3.1.jsC>测试通过,jquery-1.5.1.jsC>测试不通过。
实现CheckBox全选/全不选/反选代码如下:
<%@ page language="java" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>复选框全选/全不选/反选</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <script type="text/javascript" src="<%=request.getContextPath()%>/js/jquery-1.3.1.js"></script> <script type="text/javascript"> /** * 全选 * * items 复选框的name */ function allCkb(items){ $('[name='+items+']:checkbox').attr("checked", true); } /** * 全不选 * */ function unAllCkb(){ $('[type=checkbox]:checkbox').attr('checked', false); } /** * 反选 * * items 复选框的name */ function inverseCkb(items){ $('[name='+items+']:checkbox').each(function(){ //此处用jq写法颇显隆L逑植怀JQ飘逸的感觉。 //$(this).attr("checked", !$(this).attr("checked")); //直接使用js原生代码,简单实用 this.checked=!this.checked; }); } </script> </head> <body> <input type='checkbox' name='ckb' value="0"/>白羊座 <input type='checkbox' name='ckb' value="1"/>狮子座 <input type='checkbox' name='ckb' value="2"/>水瓶座 <input type='checkbox' name='ckb' value="3"/>射手座<br/> <input type="button" onclick="allCkb('ckb')" value="全 选"/> <input type="button" onclick="unAllCkb()" value="全不选"/> <input type="button" onclick="inverseCkb('ckb')" value="反 选"/> </body> </html>
相关推荐
haocxy 2020-06-09
hehekai 2020-05-08
ELEMENTS爱乐小超 2020-04-23
sixthelement 2020-04-09
lianback 2020-03-28
天步 2020-01-21
81463166 2020-01-04
waterv 2019-12-08
peixiaopao 2011-08-14
88580793 2018-01-03
89387046 2017-11-08
taiyangyu 2019-09-04
herionliu 2019-09-05
83296631 2017-09-30
ddzhouqian 2015-05-06
VipWangQiaoqiao 2013-06-05