码迷,mamicode.com
首页 > Web开发 > 详细

jquery获取radio值

时间:2014-10-16 00:11:51      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   ar   for   sp   on   cti   ad   

单选组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();
(www.111cn.net) $("#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>
from:http://www.111cn.net/wy/jquery/jquery-radio.htm

jquery获取radio值

标签:http   io   os   ar   for   sp   on   cti   ad   

原文地址:http://www.cnblogs.com/alibai/p/4027352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!