jsp页面跳转代码
在htm文件中,设计三个单选按钮,组名为“user”,按钮名分别为“大学”、“中学”、“小学”,选中其中一个,按下"确定"分别跳转到相应的daxue.htm,zhongx...
在htm文件中,设计三个单选按钮,组名为“user”,按钮名分别为“大学”、“中学”、“小学”,选中其中一个,按下"确定"分别跳转到相应的daxue.htm,zhongxue.htm,xiaoxue.htm页面。请问跳转的关键代码是什么?我本来打算在javascript中用window.location.href=“url”实现的,但是不知为什么一直不肯跳转
function checkInput(){
var user = document.getElementsByName("user");
var value1 = 0;
for(var i=0;i <user.length;i++){
if(user[i].checked)
{
value1 = user[i].value;
break;
}
}
if(value1 == 0){ window.location.href="daxue.htm";
}
if(value1=="1"){
}
if(value1=="2"){}
}
我认为只是跳转不了,因为我在
if(value1 =="0"){
alert("大学"); //这句为了测试判断条件,能够正常执行,显示 "大学"
window.location.href="daxue.htm"; //还是不能跳转
}
if(value1=="1"){
}
if(value1=="2"){
} 展开
function checkInput(){
var user = document.getElementsByName("user");
var value1 = 0;
for(var i=0;i <user.length;i++){
if(user[i].checked)
{
value1 = user[i].value;
break;
}
}
if(value1 == 0){ window.location.href="daxue.htm";
}
if(value1=="1"){
}
if(value1=="2"){}
}
我认为只是跳转不了,因为我在
if(value1 =="0"){
alert("大学"); //这句为了测试判断条件,能够正常执行,显示 "大学"
window.location.href="daxue.htm"; //还是不能跳转
}
if(value1=="1"){
}
if(value1=="2"){
} 展开
6个回答
展开全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="" id="loginForm">
<input type="radio" name="user" value="0" checked>大学</input>
<input type="radio" name="user" value="1" >中学</input>
<input type="radio" name="user" value="2" >小学</input>
<input name="button" type="submit" value="登陆" onClick="checkInput();" />
</form>
</body>
<script>
function checkInput(){
var user = document.getElementsByName("user");
var form = document.getElementById("loginForm");
var value1 = 0;
for(var i=0;i <user.length;i++){
if(user[i].checked)
{
value1 = user[i].value;
break;
}
}
if(value1 == 0){
form.action="daxue.htm";
}
if(value1==1){
form.action="zhongxue.htm";
}
if(value1==2){
form.action="xiaoxue.htm";
}
form.submit();
}
</script>
</html>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="" id="loginForm">
<input type="radio" name="user" value="0" checked>大学</input>
<input type="radio" name="user" value="1" >中学</input>
<input type="radio" name="user" value="2" >小学</input>
<input name="button" type="submit" value="登陆" onClick="checkInput();" />
</form>
</body>
<script>
function checkInput(){
var user = document.getElementsByName("user");
var form = document.getElementById("loginForm");
var value1 = 0;
for(var i=0;i <user.length;i++){
if(user[i].checked)
{
value1 = user[i].value;
break;
}
}
if(value1 == 0){
form.action="daxue.htm";
}
if(value1==1){
form.action="zhongxue.htm";
}
if(value1==2){
form.action="xiaoxue.htm";
}
form.submit();
}
</script>
</html>
展开全部
<input type="radio" name="user" value="0" onclick="checkInput('daxue.html');">大学</input>
<input type="radio" name="user" value="1" onclick="checkInput('zhongxue.html');">中学</input>
<input type="radio" name="user" value="2" onclick="checkInput('xiaoxue.html');">小学</input>
<script>
function checkInput(s){
window.location.href=s;
}
</script>
<input type="radio" name="user" value="1" onclick="checkInput('zhongxue.html');">中学</input>
<input type="radio" name="user" value="2" onclick="checkInput('xiaoxue.html');">小学</input>
<script>
function checkInput(s){
window.location.href=s;
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
window.open("www.baidu.com","_self")
行了都别说了,我已经试了!!!!!!!!!
楼主的
if(value1 == 0){
window.location.href="daxue.htm";
}
可以用,0 或者“0”都行。daxue.htm和这个页要在同一文件夹内
楼主自己看吧
行了都别说了,我已经试了!!!!!!!!!
楼主的
if(value1 == 0){
window.location.href="daxue.htm";
}
可以用,0 或者“0”都行。daxue.htm和这个页要在同一文件夹内
楼主自己看吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你都 break了
后面代码都不执行了,肯定是跳不了的。
后面代码都不执行了,肯定是跳不了的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
好象没有错误啊。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
弹出”大学“后是什么样的状态,你跳转路径写的对吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询