博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery对checkbox的操作汇总
阅读量:4963 次
发布时间:2019-06-12

本文共 1076 字,大约阅读时间需要 3 分钟。

1、全选$("#btn1").click(function(){ $("input[name='checkbox']").attr("checked","true"); })2、取消全选(全不选)$("#btn2").click(function(){ $("input[name='checkbox']").removeAttr("checked"); })3、选中所有奇数$("#btn3").click(function(){ $("input[name='checkbox']:odd").attr("checked","true"); })4、选中所有偶数$("#btn6").click(function(){ $("input[name='checkbox']:even").attr("checked","true"); }) 5、反选$("#btn4").click(function(){ $("input[name='checkbox']").each(function(){ if($(this).attr("checked")) { $(this).removeAttr("checked"); } else{ $(this).attr("checked","true"); } }) }) 或者$("#invert").click(function(){  $("#ruleMessage [name='delModuleID']:checkbox").each(function(i,o){   $(o).attr("checked",!$(o).attr("checked"));  }); });6、获取选择项的值var aa=""; $("#btn5").click(function(){ $("input[name='checkbox']:checkbox:checked").each(function(){ aa+=$(this).val() }) document.write(aa); }) })7、遍历选中项$("input[type=checkbox][checked]").each(function(){ //由于复选框一般选中的是多个,所以可以循环输出  alert($(this).val()); });

转自:http://www.jb51.net/article/75717.htm

转载于:https://www.cnblogs.com/alanleung/p/7602464.html

你可能感兴趣的文章
zoj 1109 zoj 1109 Language of FatMouse(字典树)
查看>>
jenkins api调用
查看>>
sql server获取连续年份、月份、日
查看>>
leetcode笔记(七)529. Minesweeper
查看>>
vue+electron开发桌面应用程序
查看>>
ExpandableListView的简单案例
查看>>
sublime-text快捷健 转
查看>>
快速隐写术的一个小程序
查看>>
webstorm添加*.vue文件代码提醒支持webstorm支持es6vue里支持es6写法
查看>>
输入年龄输出年龄段
查看>>
12.创建关系时的级联操作
查看>>
Android中RelativeLayout各个属性的含义
查看>>
Leetcode-414 Third Maximum Number(第三大的数)
查看>>
喵哈哈村的魔法考试 Round #21 (Div.2) 题解
查看>>
【译】x86程序员手册20-6.3.4门描述符守卫程序入口
查看>>
Navicat http 通道增加验证
查看>>
UE4 的 kDopTree
查看>>
记录一下安装oracl遇到的错误与注意事项
查看>>
shell编程之俄罗斯方块
查看>>
java单例模式
查看>>