单选按钮组opt有两个值a、b,用asp怎样实现它选择a时转向一个页面,选择b时转向另外一个页面
3个回答
展开全部
这个很简单的
可以使用客户端javascript
<input type="radio" name="opt" value="url1" onclick="location.href=this.value;">
<input type="radio" name="opt" value="url2" onclick="location.href=this.value;">
<input type="radio" name="opt" value="url3" onclick="location.href=this.value;">
也可以使用服务器端,页面提交到服务器端后
<%
dim opt
opt = Request("opt")
if opt = "url1" then
Response.rediresct "地址1"
elseif opt = "url2" then
Response.rediresct "地址2"
else
Response.rediresct "地址3"
end if
%>
可以使用客户端javascript
<input type="radio" name="opt" value="url1" onclick="location.href=this.value;">
<input type="radio" name="opt" value="url2" onclick="location.href=this.value;">
<input type="radio" name="opt" value="url3" onclick="location.href=this.value;">
也可以使用服务器端,页面提交到服务器端后
<%
dim opt
opt = Request("opt")
if opt = "url1" then
Response.rediresct "地址1"
elseif opt = "url2" then
Response.rediresct "地址2"
else
Response.rediresct "地址3"
end if
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
asp方法(提交表单页面就略掉了):
<%
opt=trim(request("opt"))
if opt="a" then
response.redirect "a.html"
elseif opt="b" then
response.redirect "b.html"
end if
%>
另附,js方法:
<input type="radio" name="opt" value="a" onclick="location.href='http://www.baidu.com';">
<input type="radio" name="opt" value="b" onclick="location.href='http://www.google.com';">
<%
opt=trim(request("opt"))
if opt="a" then
response.redirect "a.html"
elseif opt="b" then
response.redirect "b.html"
end if
%>
另附,js方法:
<input type="radio" name="opt" value="a" onclick="location.href='http://www.baidu.com';">
<input type="radio" name="opt" value="b" onclick="location.href='http://www.google.com';">
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在onclick事件中进行处理
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询