jquery获取radio值

单选组radio: $("input[@type=radio][@checked]").val();

单选组 radio: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项

获取一组radio被选中项的值
var item = $('input[@name=items][@checked]').val();

radio单选组的第二个元素为当前选中值
$('input[@name=items]').get(1).checked = true

单选组 radio: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项

jquery老的版本
var_name = $("input[@name='radio_name']:checked").val();
jquery 1.3以后的版本
var_name = $("input[name='radio_name']:checked").val();

看个获取radio值的jquery实例

function getra(){
 
       var_name = $("input[name='isspecialcnt']:checked").val();
       //alert(var_name);
       if(var_name=='1'){
       $("#isspecialcntyes").show();
       $("#isspecialcntno").hide();
       }
       if(var_name=='0'){
       $("#isspecialcntyes").hide();
       $("#isspecialcntno").show();
       }
 }

<form name="form1" method="post" action="">
  <p>
    <label>
      <input type="radio" name="radiogroup1" value="单选" id="radiogroup1_0">
      单选</label>
    <br>
    <label>
      <input type="radio" name="radiogroup1" value="单选" id="radiogroup1_1">
      单选</label>
    <br>
    <label>
      <input type="radio" name="radiogroup1" value="单选" id="radiogroup1_2">
      单选</label>
    <br>
    <label>
      <input type="radio" name="radiogroup1" value="单选" id="radiogroup1_3">
      单选</label>
    <br>
    <label>
      <input type="radio" name="radiogroup1" value="单选" id="radiogroup1_4">
      单选</label>
    <br>
    <label>
      <input type="radio" name="radiogroup1" value="单选" id="radiogroup1_5">
      单选</label>
    <br>
  </p>
</form>

时间: 2024-11-02 15:26:02

jquery获取radio值的相关文章

jquery获取radio值实例_jquery

本文实例讲述了jquery获取radio值的方法,分享给大家供大家参考.具体如下: 单选组radio: 复制代码 代码如下: $("input[@type=radio][@checked]").val(); 单选组 radio: 复制代码 代码如下: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项 获取一组radio被选中项的值 复制代码 代码如下: var ite

jquery获取radio值(单选组radio)_javascript技巧

单选组radio: $("input[@type=radio][@checked]").val(); 单选组radio: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项 获取一组radio被选中项的值 var item = $('input[@name=items][@checked]').val(); radio单选组的第二个元素为当前选中值 $('input[@

jQuery获取Radio,CheckBox选择的Value值

 这篇文章主要是对jQuery获取Radio,CheckBox选择的Value值进行了详细的介绍,需要的朋友可以过来参考下,希望对大家有所帮助 $("input[name='radio_name'][checked]").val(); //选择被选中Radio的Value值 $("#text_id").focus(function(){//code...}); //事件 当对象text_id获取焦点时触发 $("#text_id").blur(f

使用jquery获取radio的值

 使用jquery获取radio的值,最重要的是掌握jquery选择器的使用,在一个表单中我们通常是要获取被选中的那个radio项的值,所以要加checked来筛选,比如有以下的一些radio项: 1.<input type="radio" name="testradio" value="jquery获取radio的值" />jquery获取radio的值 2.<input type="radio" na

jQuery获取cookie值及删除cookie用法实例_jquery

本文实例讲述了jQuery获取cookie值及删除cookie用法.分享给大家供大家参考,具体如下: cookie在jquery中有指定的cookie操作类,这里先来介绍在使用cookie操作类时的一些问题,然后介绍正确的使用方法. 使用JQuery操作cookie时 发生取的值不正确的问题: 结果发现cookie有四个不同的属性: 名称,内容,域,路径 $.cookie('the_cookie'); // 读取 cookie $.cookie('the_cookie', 'the_value'

textfield-Ext.net Jquery获取TextField值

问题描述 Ext.net Jquery获取TextField值 @( X.Window() .Title("这是添加页面") .Width(400) .Height(400) .Layout("FitLayout") .AutoShow(true) .Items( X.FormPanel() .ID("PanelForm") .BodyPadding(5) .Items( X.TextField() .ID("txtName"

js /jquery 获取cookie值代码

js /jquery 获取cookie值代码 */ function getcookie(name, dc){       var cname = name + "=";     if (dc.length > 0){           var begin = dc.indexof(cname);         if (begin != -1){               begin += cname.length;               end = dc.index

jquery 获取input值代码

方法很简单,我们来看看如何用jquery 获取input值代码吧. 取值:val = $("#id")[0].value; 赋值: $("#id")[0].value = "new value"; 或者$("#id").val("new value"); 或者这样也可以:val = $("#id").attr("value");

jQuery 设置 radio 值时,使用 eq 替换 nth

例  代码如下 复制代码 <p> <label for="">性别:</label> <span>     <em>男</em>     <input type="radio" name="sex" value="男" /> </span> <span>     <em>女</em>     &l