<div id="wrap">
<input type="radio" name="payMethod" value="1" />支付宝
<input type="radio" name="payMethod" value="2" />财务通
</div>
获取一组单选按钮对象:var obj_payPlatform = $('#wrap input[name="payMethod"]');
获取被选中按钮的值 :var val_payPlatform = $('#wrap input[name="payMethod"]:checked ')val();
这样写好些吧:
<form onsubmit="return check(this);" >
<input type=radio name="a" value=0>0
<input type=radio name="a" value=1>1
<input type=submit value="提交">
</form>
<script type="text/javascript">
function check(formObj)
{
for(var i=0;i<formObjalength;i++)
{
if(formObja[i]checked)
{
//alert("单选框选中: " + formObja[i]value);
return true;
}
}
alert("单选框未选中");
return false;
}
</script>
radio标签的取值方法如下:
<html:radio property="userRole" value="operator" onclick="radioValue()"/>
<html:radio property="userRole" value="admin" onclick="radioValue()"/>
<script language="javascript">
function radioValue(){
var obj = documentalluserRole;
if(obj){
for(var i=0;i<objlength;i++){//适合length>=2时,当objlength==null时,可以直接取objvalue值
if(obj[i]checked){
alert(obj[i]value);
break;
}
}
}
}
</script>
首先你的代码是有问题的,你选“是”还是“否”的标准时你的value值,然而你的value值现在都是空字符串。你这样写
在后台不要返回是,返回数字1或者0赋值给变量i。
<%int i = requestgetParameter("value");%>
<input type="radio" name="keyMan" value="1" <%if(i==1){outprint("select");} %>/>是
<input type="radio" name="keyMan" value="0" <%if(i==1){outprint("select");} %>/>否
这样你就可以动态的控制radio的默认选择了。
首先,查看你表单的提交方式是不是 post
<form method="post"></form>
后台处理时,先加一句requestsetCharacterEncoding("GBK");
再通过String gender = requestgetParameter("radio");接收参数
另外一种方法就是增加编码过滤器
以上就是关于jquery怎样获取选中radio的value值全部的内容,包括:jquery怎样获取选中radio的value值、js获取radio属性的值、jsp获取radio的值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)