网页制作中,不同的单选按钮,在按了下一步按钮以后,链接到不同的页面,该怎么做?代码如何?
比如a.asp页面上有单选按钮a,b。如果选择a,按下一步,跳转到b.asp;如果选择b,按下一步,跳转到c.asp上该怎么做?有没有具体的代码~...
比如a.asp页面上有单选按钮a,b。如果选择a,按下一步,跳转到b.asp;如果选择b,按下一步,跳转到c.asp上该怎么做?
有没有具体的代码~ 展开
有没有具体的代码~ 展开
展开全部
两种方法,一种是用JS来做,判断点击的是哪个按钮,另一种就是用ASP来判断,加个判断页,接收传过来的SUBMIT值,通过此值来确定要转到哪个页面
这个不需要问,百度一搜代码满天都是……
这个不需要问,百度一搜代码满天都是……
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<label>
<input name="links" type="radio" onclick="MM_goToURL('parent','http://www.baidu.com/');return document.MM_returnValue" value="http://www.baidu.com/" />
baidu</label>
<br />
<label>
<input name="links" type="radio" onclick="MM_goToURL('parent','http://www.sina.com/');return document.MM_returnValue" value="http://www.sina.com/" />
sina</label>
<br />
</p>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<label>
<input name="links" type="radio" onclick="MM_goToURL('parent','http://www.baidu.com/');return document.MM_returnValue" value="http://www.baidu.com/" />
baidu</label>
<br />
<label>
<input name="links" type="radio" onclick="MM_goToURL('parent','http://www.sina.com/');return document.MM_returnValue" value="http://www.sina.com/" />
sina</label>
<br />
</p>
</form>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你想在按下一步时跳到其它按钮,肯定是要用JS来执行吧,那么只要在执行代码中加入判断语句,判断当前是哪个单选按钮被选择,然后根据判断结果再跳到相应的页面。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询