zoukankan      html  css  js  c++  java
  • jQuery操作<input type="radio">

      <input type="radio">如下:

    <input type="radio" name="city" value="BeiJing">北京
    <input type="radio" name="city" value="TianJin">天津
    <input type="radio" name="city" value="NanJing">南京
    <input type="radio" name="city" value="YangZhou">扬州
    <input type="radio" name="city" value="SuZhou">苏州
    

      1、获取选中的radio的值:

    $("input[name='city']:checked").val();
    

      使用元素选择器,再使用属性过滤器name='city',最后使用:checked选取被选中的元素。

      2、给指定值的radio设置选中状态:

    $("input[name='city'][value='YangZhou']").attr("checked",true);
    

      给name="city"而且value="YangZhou"的radio设置选中状态。

      3、取消name="city"的radio的选中状态:

    $('input[name="city"]:checked').attr("checked",false);
    

      4、获取name="city"的radio的个数:

    $("input[name='city']").length;
    

      5、获取name="city"而且索引是偶数的radio:

    $("input[name='city']:even");

      索引是从0开始的。

      6、获取name="city"而且索引是奇数的radio:

    $("input[name='city']:odd");
    

      索引是从0开始的。

      7、迭代radio:

    $("input[name='city']").each(function(i,obj){
      	//i,迭代的下标,从0开始
      	//obj,当前的对象(HTMLInputElement),可以使用obj.value格式获取属性值
      	//$(this);当前jQuery对象,可以使用$(this).val()获取属性值
    });
    

      迭代name="city"的radio。

      8、禁用radio:

    $("input[name='city']").attr("disabled",true);
    

      禁用name="city"的radio。

      9、启用radio:

    $("input[name='city']").attr("disabled",false);
    

      启用name="city"的radio。

      

      

      

  • 相关阅读:
    linux内核编译
    字符设备驱动ioctl实现用户层内核层通信
    Linux内核完全剖析基于0.12内核
    KVM分析报告
    kvm的vmcall
    kvm源代码分析
    KVM基本概念
    linux系统调用
    UML的9种图例解析(转)
    SurfaceView的基本使用(转)
  • 原文地址:https://www.cnblogs.com/luxh/p/2538281.html
Copyright © 2011-2022 走看看