jsp获取radio的值
我现在在jsp中这样一个radio:<inputtype="radio"name="keyMan"value=""/>是<inputtype="radio"name="k...
我现在在jsp中这样一个radio:
<input type="radio" name="keyMan" value=""/>是
<input type="radio" name="keyMan" value=""/>否
我在后台返回一个“是”,请问我怎么在页面上显示选择在是上? 展开
<input type="radio" name="keyMan" value=""/>是
<input type="radio" name="keyMan" value=""/>否
我在后台返回一个“是”,请问我怎么在页面上显示选择在是上? 展开
6个回答
展开全部
首先你的代码是有问题的,你选“是”还是“否”的标准时你的value值,然而你的value值现在都是空字符串。你这样写
在后台不要返回是,返回数字1或者0赋值给变量i。
<%int i = request.getParameter("value");%>
<input type="radio" name="keyMan" value="1" <%if(i==1){out.print("select");} %>/>是
<input type="radio" name="keyMan" value="0" <%if(i==1){out.print("select");} %>/>否
这样你就可以动态的控制radio的默认选择了。
在后台不要返回是,返回数字1或者0赋值给变量i。
<%int i = request.getParameter("value");%>
<input type="radio" name="keyMan" value="1" <%if(i==1){out.print("select");} %>/>是
<input type="radio" name="keyMan" value="0" <%if(i==1){out.print("select");} %>/>否
这样你就可以动态的控制radio的默认选择了。
展开全部
首先你的代码是有问题的,你选“是”还是“否”的标准时你的value值,然而你的value值现在都是空字符串。你这样写
在后台不要返回是,返回数字1或者0赋值给变量i。
<%int
i
=
request.getParameter("value");%>
<input
type="radio"
name="keyMan"
value="1"
<%if(i==1){out.print("select");}
%>/>是
<input
type="radio"
name="keyMan"
value="0"
<%if(i==1){out.print("select");}
%>/>否
这样你就可以动态的控制radio的默认选择了。
在后台不要返回是,返回数字1或者0赋值给变量i。
<%int
i
=
request.getParameter("value");%>
<input
type="radio"
name="keyMan"
value="1"
<%if(i==1){out.print("select");}
%>/>是
<input
type="radio"
name="keyMan"
value="0"
<%if(i==1){out.print("select");}
%>/>否
这样你就可以动态的控制radio的默认选择了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先要获得radio的数组。然后遍历该数组找到checked()的那个radio。最后.value获得值,就这么简单。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用脚本吧:
var keyManValue = 你从后台得到的值
var radios = document.getElementsByName("keyMan");
for(var i=0;i<radios.length;i++){
if(keyManValue='是’){
radios[0].checked = true;
}else{
radios[1].checked = true;
}
}
var keyManValue = 你从后台得到的值
var radios = document.getElementsByName("keyMan");
for(var i=0;i<radios.length;i++){
if(keyManValue='是’){
radios[0].checked = true;
}else{
radios[1].checked = true;
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以通过元素的name属性,获取到相同的值,只会根据radio的checked属性来获取到被选中的元素:
<form action="c.jsp"onsubmit="check();">
<input type=radio name="a" value=0>0
<input type=radio name="a" value=1>1
<input type=radio name="b" value=0>0
</form>
<script type="text/javascript">
function check(){
var i,flag=0;
var obj1=document.getElementsByName("a");
for(i=0;i<obj1.length;i++){
if(obj1[i].checked){
flag=1;
}
}
<form action="c.jsp"onsubmit="check();">
<input type=radio name="a" value=0>0
<input type=radio name="a" value=1>1
<input type=radio name="b" value=0>0
</form>
<script type="text/javascript">
function check(){
var i,flag=0;
var obj1=document.getElementsByName("a");
for(i=0;i<obj1.length;i++){
if(obj1[i].checked){
flag=1;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |