关于<input type=radio>传值的问题
现在碰到个问题,就是当用<inputtype=raido>传值的时候,下一个网页找不到radio的值Eg:<scriptlanguage=javascript>windo...
现在碰到个问题,就是当用<input type=raido>传值的时候,下一个网页找不到radio的值
Eg:
<script language=javascript>
window.location.href="login_1.asp?&xb=" (document.all.xb1.value);
</script>
<form>
<table>
<tr><td>
<input type=radio name=xb1 value="1"男<input input type=radio name=xb1 value="2">女
</td></tr>
<tr><td>
<input type=button name="tj">
</td></tr>
</able>
</form>
当选男的时候传1,当选女的时候传2,性别为字符型varchar(1)
请高手指教 展开
Eg:
<script language=javascript>
window.location.href="login_1.asp?&xb=" (document.all.xb1.value);
</script>
<form>
<table>
<tr><td>
<input type=radio name=xb1 value="1"男<input input type=radio name=xb1 value="2">女
</td></tr>
<tr><td>
<input type=button name="tj">
</td></tr>
</able>
</form>
当选男的时候传1,当选女的时候传2,性别为字符型varchar(1)
请高手指教 展开
4个回答
展开全部
<form>
<input type=radio name=xb1 value="1" />男<input input type=radio name=xb1 value="2" />女
<input name="tj" type=submit value="提交">
</form>
<%xb=request("xb1")%>
<script language="javascript">
alert("<%=xb%>")
</script>
<input type=radio name=xb1 value="1" />男<input input type=radio name=xb1 value="2" />女
<input name="tj" type=submit value="提交">
</form>
<%xb=request("xb1")%>
<script language="javascript">
alert("<%=xb%>")
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<td><label>
<input type="radio" name="sex" value="男">
男 </label>
<label>
<input type="radio" name="sex" value="女">
女 </label></td>
<input type="radio" name="sex" value="男">
男 </label>
<label>
<input type="radio" name="sex" value="女">
女 </label></td>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input type="radio" name="sex" value="1">
男 </label>
<label>
<input type="radio" name="sex" value="2">
女
男 </label>
<label>
<input type="radio" name="sex" value="2">
女
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script type="text/javascript">
function ch(){
var url=document.forms[0];
if(url.xb1[0].checked){
window.location.href="login_1.asp?&xb="+url.xb1[0].value;
}else if(url.xb1[1].checked){
window.location.href="login_1.asp?&xb="+url.xb1[1].value;
}
}
</script>
<body>
<input type="button" onclick="ch()" value="change" />
<form>
<input type=radio name=xb1 value="1" />男<input type=radio name=xb1 value="2">女
</form>
</body>
function ch(){
var url=document.forms[0];
if(url.xb1[0].checked){
window.location.href="login_1.asp?&xb="+url.xb1[0].value;
}else if(url.xb1[1].checked){
window.location.href="login_1.asp?&xb="+url.xb1[1].value;
}
}
</script>
<body>
<input type="button" onclick="ch()" value="change" />
<form>
<input type=radio name=xb1 value="1" />男<input type=radio name=xb1 value="2">女
</form>
</body>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询