方法checkbox选中一个另一个checkbox也会选中的实现代码_jquery

checkbox选中  时间:2021-04-22  阅读:()

checkbox选中一个另一个checkbox也会选中的实现代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' >

<head>

<meta http-equiv='content-type' content=' text/html; charset=utf-8' /><meta http-equiv='content-language' content='en-us' />

<title>CheckBox select</title>

<script type=' text/javascript' src=' jquery-3.0.0. js' ></script><script type=' text/javascript' >

$(document) .ready(function() {

/****----全选----****/

//$('#check1' ) .on('change' ,function() {

//$("#check1") .bind("click",function() {

$('#check1' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$(' input' ) .prop('checked' , true) ;

}else{

$(' input' ) .prop('checked' ,false) ;

}if($(".do") . text()=="全选") {

$(".do") . text("取消") ;

}else{

$(".do") . text("全选") ;

}

//方法二

//$(' input[type=checkbox] ' ) .prop('checked' , $(this) .prop('checked' ) ) ;} ) ;

/****----第一列----****/

$('#checkl1' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check11,#check21,#check31,#check41,#check51' ) .prop('checked' , true) ;

}else{

$('#check11,#check21,#check31,#check41,#check51' ) .prop('checked' ,false) ;

}

//方法二如上

} ) ;

/****----第二列----****/

$('#checkl2' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check12,#check22,#check32,#check42,#check52' ) .prop('checked' , true) ;

}else{

$('#check12,#check22,#check32,#check42,#check52' ) .prop('checked' ,false) ;

}

//方法二如上

} ) ;

/****----第三列----****/

$('#checkl3' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check13,#check23,#check33,#check43,#check53' ) .prop('checked' , true) ;

}else{

$('#check13,#check23,#check33,#check43,#check53' ) .prop('checked' ,false) ;

}

//方法二如上

} ) ;

/****----第四列----****/

$('#checkl4' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check14,#check24,#check34,#check44,#check54' ) .prop('checked' , true) ;

}else{

$('#check14,#check24,#check34,#check44,#check54' ) .prop('checked' ,false) ;

}

//方法二如上

} ) ;

/****----第一行----****/

$('#checkh1' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check11,#check12,#check13,#check14' ) .prop('checked' , true) ;}else{

$('#check11,#check12,#check13,#check14' ) .prop('checked' ,false) ;}

//方法二如上

} ) ;

/****----第二行----****/

$('#checkh2' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check21,#check22,#check23,#check24' ) .prop('checked' , true) ;}else{

$('#check21,#check22,#check23,#check24' ) .prop('checked' ,false) ;}

//方法二如上

} ) ;

/****----第三行----****/

$('#checkh3' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check31,#check32,#check33,#check34' ) .prop('checked' , true) ;}else{

$('#check31,#check32,#check33,#check34' ) .prop('checked' ,false) ;}

//方法二如上

} ) ;

/****----第四行----****/

$('#checkh4' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check41,#check42,#check43,#check44' ) .prop('checked' , true) ;}else{

$('#check41,#check42,#check43,#check44' ) .prop('checked' ,false) ;}

//方法二如上

} ) ;

/****----第五行----****/

$('#checkh5' ) .on('click' ,function() {

//方法一if(this.checked==true) {

$('#check51,#check52,#check53,#check54' ) .prop('checked' , true) ;}else{

$('#check51,#check52,#check53,#check54' ) .prop('checked' ,false) ;}

//方法二如上

} ) ;

} ) ;

</script>

</head>

<body>

<table style="width:50%;">

<tr>

<td><input type="checkbox" id = "check1" /><label for="check1"class="do">全选</label></td>

<td><input type="checkbox" id = "checkl1" /><label for="checkl1">第一列</label></td>

<td><input type="checkbox" id = "checkl2" /><label for="checkl2">第二列</label></td>

<td><input type="checkbox" id = "checkl3" /><label for="checkl3">第三列</label></td>

<td><input type="checkbox" id = "checkl4" /><label for="checkl4">第四列</label></td>

</tr>

<tr>

<td><input type="checkbox" id = "checkh1" /><label for="checkh1">第一行</label></td>

<td><input type="checkbox" id = "check11" /></td>

<td><input type="checkbox" id = "check12" /></td>

<td><input type="checkbox" id = "check13" /></td>

<td><input type="checkbox" id = "check14" /></td>

</tr>

<tr>

<td><input type="checkbox" id = "checkh2" /><label for="checkh2">第二行</label></td>

<td><input type="checkbox" id = "check21" /></td>

<td><input type="checkbox" id = "check22" /></td>

<td><input type="checkbox" id = "check23" /></td>

<td><input type="checkbox" id = "check24" /></td>

</tr>

<tr>

<td><input type="checkbox" id = "checkh3" /><label for="checkh3">第三行</label></td>

<td><input type="checkbox" id = "check31" /></td>

<td><input type="checkbox" id = "check32" /></td>

<td><input type="checkbox" id = "check33" /></td>

<td><input type="checkbox" id = "check34" /></td>

</tr>

<tr>

<td><input type="checkbox" id = "checkh4" /><label for="checkh4">第四行</label></td>

<td><input type="checkbox" id = "check41" /></td>

<td><input type="checkbox" id = "check42" /></td>

<td><input type="checkbox" id = "check43" /></td>

<td><input type="checkbox" id = "check44" /></td>

</tr>

<tr>

<td><input type="checkbox" id = "checkh5" /><label for="checkh5">第五行</label></td>

<td><input type="checkbox" id = "check51" /></td>

<td><input type="checkbox" id = "check52" /></td>

<td><input type="checkbox" id = "check53" /></td>

<td><input type="checkbox" id = "check54" /></td>

</tr>

</tbody>

</table>

</body>

</html>

效果图

以上所述是小编给大家介绍的checkbox选中一个另一个checkbox也会选中的实现代码的全部叙述希望对大家有所帮助如果大家想了解更多内容敬请关注脚本之家

CheapWindowsVPS:7个机房可选全场5折,1Gbps不限流量每月4.5美元

CheapWindowsVPS是一家成立于2007年的老牌国外主机商,顾名思义,一个提供便宜的Windows系统VPS主机(同样也支持安装Linux系列的哈)的商家,可选数据中心包括美国洛杉矶、达拉斯、芝加哥、纽约、英国伦敦、法国、新加坡等等,目前商家针对VPS主机推出5折优惠码,优惠后最低4GB内存套餐月付仅4.5美元。下面列出几款VPS主机配置信息。CPU:2cores内存:4GB硬盘:60G...

Hostinger 限时外贸美国主机活动 低至月12元且赠送1个COM域名

Hostinger 商家我们可能一些新用户不是太熟悉,因为我们很多新人用户都可能较多的直接从云服务器、独立服务器起步的。而Hostinger商家已经有将近十年的历史的商家,曾经主做低价虚拟主机,也是比较有知名度的,那时候也有接触过,不过一直没有过多的使用。这不这么多年过去,Hostinger商家一直比较稳妥的在运营,最近看到这个商家在改版UI后且产品上也在活动策划比较多。目前Hostinger在进...

德阳电信高防物理机 16核16G 50M 260元/月 达州创梦网络

达州创梦网络怎么样,达州创梦网络公司位于四川省达州市,属于四川本地企业,资质齐全,IDC/ISP均有,从创梦网络这边租的服务器均可以备案,属于一手资源,高防机柜、大带宽、高防IP业务,一手整C IP段,四川电信,一手四川托管服务商,成都优化线路,机柜租用、服务器云服务器租用,适合建站做游戏,不须要在套CDN,全国访问快,直连省骨干,大网封UDP,无视UDP攻击,机房集群高达1.2TB,单机可提供1...

checkbox选中为你推荐
朗科ios5文件127basedcssCouriercssloadedios支持ipad支持ipad支持ipad《个人收入的分配过关检测》tcpip上的netbiostcpip上的netbios是什么用的,有安全隐患吗?开启还是关上
韩国服务器租用 网游服务器租用 yardvps linode代购 国外空间 mysql主机 元旦促销 我爱水煮鱼 七夕快乐英文 搜索引擎提交入口 如何注册阿里云邮箱 申请网页 linux使用教程 空间首页登陆 中国联通宽带测速 如何登陆阿里云邮箱 双11促销 ipower reboot ubuntu安装教程 更多