js里面怎么通过提示框跳转页面

JavaScript023

js里面怎么通过提示框跳转页面,第1张

下面是一种方式点击提示框跳转到页面的方法,供你参考,希望有帮助你!

<!doctype html>

2 <html lang="en">

3 <head>

4 <meta charset="UTF-8">

5 <title>Document</title>

6 </head>

7 <body>

8 <script>

9 window.onload = function(){//设置当页面加载时执行

10 var btn =document.getElementsByTagName("button")[0] //获取btn元素

11 btn.onclick = function(){//给button加上一个点击事件

12 var answer = confirm("是否想游览ziksang博客园") //把确认框赋值给answer

13 if(answer)//判断是否点击确定

14 window.location ="http://www.cnblogs.com/Ziksang/" //确定的话游览器自身跳转

15 }

16

17 }

18 </script>

19<button>点击跳转</button>

20 </body>

21 </html>

给你写个例子

<%

String username = (String) session.getAttribute("sUser")

if(username!=null)//如果这个不等于空,那么证明已经登录

{

MessageBiz bmb = new MessageBizImpl()

List<Message>list = bmb.findMessages(username)

request.setAttribute("msgs", list)

}else

{

%>

<script type="text/javascript">alert("请先登陆")window.location="../login.jsp" </script>

<%

//如果session 为空那么证明没有登录将跳到login.jsp

}

%>

主页面的js 先定义点击后要转的页面,例如:

function test2(){

ifr1.location.href ="2.html"// ifr1 是指主页面下的iframe id.

}

然后某子子子页面

function testclick(){

top.test2()

//window.location.href ="test.html"

}

button 的 onclick ="testclick()", 至于5秒的定义可以自己找一下资料自行解决.