1、radio:单选框

HTML代码:

  1. <input type="radio" name="radio" id="radio1" value="1" />1
  2. <input type="radio" name="radio" id="radio2" value="2" />2
  3. <input type="radio" name="radio" id="radio3" value="3" />3
  4. <input type="radio" name="radio" id="radio4" value="4" />4

js操作代码:

  1. jQuery("input[type='radio'][name='radio']:checked").length == 0 ? "没有任何单选框被选中" : "已经有选中";
  2. jQuery('input[type="radio"][name="radio"]:checked').val(); // 获取一组radio被选中项的值
  3. jQuery("input[type='radio'][name='radio'][value='2']").attr("checked", "checked");// 设置value = 2的一项为选中
  4. jQuery("#radio2").attr("checked", "checked"); // 设置id=radio2的一项为选中
  5. jQuery("input[type='radio'][name='radio']").get(1).checked = true; // 设置index = 1,即第二项为当前选中
  6. var isChecked = jQuery("#radio2").attr("checked");// id=radio2的一项处于选中状态则isChecked = true, 否则isChecked = false;
  7. var isChecked = jQuery("input[type='radio'][name='radio'][value='2']").attr("checked");// value=2的一项处于选中状态则isChecked = true, 否则isChecked = false;

2、checkbox:复选框

HTML代码:

  1. <input type="checkbox" name="checkbox" id="checkAll" />全选/取消全选
  2. <input type="checkbox" name="checkbox" id="checkbox_id1" value="1" />1
  3. <input type="checkbox" name="checkbox" id="checkbox_id2" value="2" />2
  4. <input type="checkbox" name="checkbox" id="checkbox_id3" value="3" />3
  5. <input type="checkbox" name="checkbox" id="checkbox_id4" value="4" />4
  6. <input type="checkbox" name="checkbox" id="checkbox_id5" value="5" />5

js操作代码:

  1. var val = jQuery("#checkbox_id1").val();// 获取指定id的复选框的值
  2. var isSelected = jQuery("#checkbox_id3").attr("checked"); // 判断id=checkbox_id3的那个复选框是否处于选中状态,选中则isSelected=true;否则isSelected=false;
  3. jQuery("#checkbox_id3").attr("checked", true);// or
  4. jQuery("#checkbox_id3").attr("checked", 'checked');// 将id=checkbox_id3的那个复选框选中,即打勾
  5. jQuery("#checkbox_id3").attr("checked", false);// or
  6. jQuery("#checkbox_id3").attr("checked", '');// 将id=checkbox_id3的那个复选框不选中,即不打勾
  7. jQuery("input[name=checkbox][value=3]").attr("checked", 'checked');// 将name=checkbox, value=3 的那个复选框选中,即打勾
  8. jQuery("input[name=checkbox][value=3]").attr("checked", '');// 将name=checkbox, value=3 的那个复选框不选中,即不打勾
  9. jQuery("input[type=checkbox][name=checkbox]").get(2).checked = true;// 设置index = 2,即第三项为选中状态
  10. jQuery("input[type=checkbox]:checked").each(function(){ //由于复选框一般选中的是多个,所以可以循环输出选中的值
  11. alert(jQuery(this).val());
  12. });
  13. // 全选/取消全选
  14. jQuery(function() {
  15. jQuery("#checkAll").click(function(){
  16. if(jQuery(this).attr("checked") == true){// 全选
  17. jQuery("input[type=checkbox][name=checkbox]").each(function(){
  18. jQuery(this).attr("checked", true);
  19. });
  20. } else {// 取消全选
  21. jQuery("input[type=checkbox][name=checkbox]").each(function(){
  22. jQuery(this).attr("checked", false);
  23. });
  24. }
  25. });
  26. });

3、select:下拉框

HTML代码:

  1. <select name="select" id="select_id" style="width: 100px;">
  2. <option value="1">11</option>
  3. <option value="2">22</option>
  4. <option value="3">33</option>
  5. <option value="4">44</option>
  6. <option value="5">55</option>
  7. <option value="6">66</option>
  8. </select>

js操作代码:

  1. /**
  2. * jQuery获取select的各种值
  3. */
  4. jQuery("#select_id").change(function(){ // 1.为Select添加事件,当选择其中一项时触发
  5. //code...
  6. });
  7. var checkValue = jQuery("#select_id").val(); // 2.获取Select选中项的Value
  8. var checkText = jQuery("#select_id :selected").text(); // 3.获取Select选中项的Text
  9. var checkIndex = jQuery("#select_id").attr("selectedIndex"); // 4.获取Select选中项的索引值,或者:jQuery("#select_id").get(0).selectedIndex;
  10. var maxIndex = jQuery("#select_id :last").attr("index"); // 5.获取Select最大的索引值,或者:jQuery("#select_id :last").get(0).index;
  11. /**
  12. * jQuery设置Select的选中项
  13. */
  14. jQuery("#select_id").get(0).selectedIndex = 1; // 1.设置Select索引值为1的项选中
  15. jQuery("#select_id").val(4); // 2.设置Select的Value值为4的项选中
  16. /**
  17. * jQuery添加/删除Select的Option项
  18. */
  19. jQuery("#select_id").append("<option value='新增'>新增option</option>"); // 1.为Select追加一个Option(下拉项)
  20. jQuery("#select_id").prepend("<option value='请选择'>请选择</option>"); // 2.为Select插入一个Option(第一个位置)
  21. jQuery("#select_id").get(0).remove(1); // 3.删除Select中索引值为1的Option(第二个)
  22. jQuery("#select_id :last").remove(); // 4.删除Select中索引值最大Option(最后一个)
  23. jQuery("#select_id [value='3']").remove(); // 5.删除Select中Value='3'的Option
  24. jQuery("#select_id").empty(); // 6.清空下拉列表

jQuery操作radio、checkbox、select 集合的更多相关文章

  1. Jquery操作radio,checkbox,select表单操作实现代码

    一 .Select jQuery获取Select选择的Text和Value: 1. $("#select_id").change(function(){//code...}); / ...

  2. jQuery 操作 radio、select、checkbox

    <script type="text/javascript"> $(function () { 一.radio 1.获取选中值,三种方法都可以: $('input:ra ...

  3. jquery操作radio,checkbox

    1. 获取radio选中的value. $('input:radio[name=sex]:checked').val(); 2. 选择 radio 按钮 (Male). $('input:radio[ ...

  4. jSP的3种方式实现radio ,checkBox,select的默认选择值。

    jSP的3种方式实现radio ,checkBox,select的默认选择值.以radiao 为例:第一种方式:在jsp中使用java 脚本,这个方法最直接,不过脚本太多,不容易维护<%Stri ...

  5. 使用JQUERY操作Radio

    发展中经常使用Radio为了实现用户的选择的影响.我在该项目中使用的一些JQUERY操作Radio该方法.这里分享,对于有需要的朋友参考的. 1.变化radio选择.引发一些结果 $("in ...

  6. 【TP3.2+onethink】radio+checkbox+select 空间 编辑页面选中,附录 js 返回上一页

    1.TP3.2框架 如何实现 [radio+checkbox+select 空间 编辑页面选中],说实话,比较繁琐,不咋地!! 不废话,上代码:(其中 XX_arr  变量一维数组) <div ...

  7. [转]jQuery操作radio、checkbox、select 集合.

    1.radio:单选框 html代码 <input type="radio" name="radio" id="radio1" val ...

  8. jQuery操作radio、checkbox、select总结

    1.radio:单选框 HTML代码: <input type="radio" name="radio" id="radio1" va ...

  9. jQuery设置radio、select、checkbox只读属性后,如何在后台得到数据

    1 设置表单的readonly属性 对于radio.select.checkbox来说,readonly属性对这三个标签不起什么作用. 2 设置表单的disabled属性 以radio为例说明. 代码 ...

随机推荐

  1. BZOJ.2462.[BeiJing2011]矩阵模板(二维Hash)

    题目链接 序列上的Hash和前缀和差不多,二维Hash也和二维前缀和差不多了. 预处理大矩阵所有r*c的小矩阵hash值,再对询问的矩阵Hash. 类比于序列上\(s[r]-s[l-1]*pow[r- ...

  2. Codeforces Round #272 (Div. 2) A. Dreamoon and Stairs 水题

    A. Dreamoon and Stairs 题目连接: http://www.codeforces.com/contest/476/problem/A Description Dreamoon wa ...

  3. MikroTik RouterOS U盘安装工具netinstall的使用

    注意: 1.此工具我没测试成功,比如把一个U盘用这个工具制作好之后,实质上插入电脑启动会有卡死现象,不太稳定. 2.其实官方提供的教程很大一部分是这样的意思,比如把外接硬盘以USB或者SATA的形式插 ...

  4. AI 实验--v_JULY_v

    http://blog.csdn.net/v_JULY_v http://www.julyedu.com/

  5. 在Brackets中使用Emmet

    当在Brackets中安装上Emmet插件后,就可以使用Emmet的语法来加速前端编写. 有关html ● 子关系> div>ul>li ● 相邻+ div+p+bq ● 上一级^ ...

  6. delphi Format格式化函数

    Format是一个很常用,却又似乎很烦的方法,本人试图对这个方法的帮助进行一些翻译,让它有一个完整的概貌,以供大家查询之用: 首先看它的声明:function Format(const Format: ...

  7. Maven 使用了一个标准的目录结构和一个默认的构建生命周期。

    Maven 使用了一个标准的目录结构和一个默认的构建生命周期. 约定优于配置 当创建 Maven 工程时,Maven 会创建默认的工程结构.开发者只需要合理的放置文件,而在 pom.xml 中不再需要 ...

  8. 利用mvn deploy命令上传包(转)

    本文转自https://blog.csdn.net/chenaini119/article/details/52764543 mvn安装 下载maven的bin,在apache官方网站可以下载. ht ...

  9. 【mysql】sum处理null的结果

    SELECT IFNULL() createSCNum, IFNULL() privateScNum FROM security_code_config WHERE tid = 'test_tenem ...

  10. Swift - 用CATransform3DMakeRotation实现翻页效果

    Swift - 用CATransform3DMakeRotation实现翻页效果 效果 源码 https://github.com/YouXianMing/Swift-Animations // // ...