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

    本文转自:http://www.cnblogs.com/luxh/archive/2012/06/07/2538281.html

    <input type="radio">如下:

    1
    2
    3
    4
    5
    <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的值:

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

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

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

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

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

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

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

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

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

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

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

      索引是从0开始的。

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

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

      索引是从0开始的。

      7、迭代radio:

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

      迭代name="city"的radio。

      8、禁用radio:

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

      禁用name="city"的radio。

      9、启用radio:

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

      启用name="city"的radio。

  • 相关阅读:
    pydensecrf的inference.py代码的学习
    pydensecrf的使用
    Example of DenseCRF with non-RGB data
    scipy.stats.multivariate_normal的使用
    np.mgrid的用法
    Linux后台命令的使用说明
    实现能够在训练过程中手动更改学习率
    pytorch Debug —交互式调试工具Pdb (ipdb是增强版的pdb)-1-在pytorch中使用
    pytorch实现性别检测
    svn冲突意思
  • 原文地址:https://www.cnblogs.com/freeliver54/p/3097322.html
Copyright © 2011-2022 走看看