3个回答
展开全部
可以直接把下面的代码复制到你的网页里运行。我在IE8测试通过
<script>
function goto(){
if(document.getElementById('radio1').checked){
window.location.href="http://www.baidu.com";
return;
}
if(document.getElementById('radio2').checked){
window.location.href="http://www.sina.com";
return;
}
alert("请至少选择一项");
//不要使 document.getElementByName 某些浏览器不支持
}
</script>
<form id="form1" name="form1" method="post" action="">
<input type="radio" name="radio" id="radio1" value="1" />使用邮件找回
<input type="radio" name="radio" id="radio2" value="2" /> 使用手机找回
<input type="button" name="button" id="button" value="下一步" onclick="goto()" />
</form>
<script>
function goto(){
if(document.getElementById('radio1').checked){
window.location.href="http://www.baidu.com";
return;
}
if(document.getElementById('radio2').checked){
window.location.href="http://www.sina.com";
return;
}
alert("请至少选择一项");
//不要使 document.getElementByName 某些浏览器不支持
}
</script>
<form id="form1" name="form1" method="post" action="">
<input type="radio" name="radio" id="radio1" value="1" />使用邮件找回
<input type="radio" name="radio" id="radio2" value="2" /> 使用手机找回
<input type="button" name="button" id="button" value="下一步" onclick="goto()" />
</form>
2011-06-14
展开全部
这很简单的啊,给你个思路,给个参数,2个值,根据值进入不同的页面,也可以在同一个页面里面搞2个层,根据值显示或隐藏层!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var value= document。getElementByName(单选的名字)[0].value()
if(value=="email" ){
document.getElementById(表单id).action ="";
document.getElementById(表单id).submit()
}else{
document.getElementById(表单id).action ="";
document.getElementById(表单id).submit()
}
if(value=="email" ){
document.getElementById(表单id).action ="";
document.getElementById(表单id).submit()
}else{
document.getElementById(表单id).action ="";
document.getElementById(表单id).submit()
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询