码迷,mamicode.com
首页 > 其他好文 > 详细

阻止页面返回上一页

时间:2016-01-29 16:14:27      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6     <script src="jquery-1.11.3.min.js"></script>
 7 </head>
 8 <body>
 9 <!--                                              -->
10 <!--第一、二种是在新窗口打开;第三、四、五种方法是原页面打开-->
11 <!--                                              -->
12 
13 
14 <!--    第一种方法是a标签跳转       -->
15 <a href="2.html" target="_blank">aaaa</a>
16 <!--二、三、四种-->
17 <div id="btn">跳转至页面2</div>
18 <!--五种-->
19 <button onClick="logout()">Logout</button>
20 </body>
21 
22 <!--       第二种           -->
23 <script>
24     $(function(){
25         $("#btn").click(function(){
26             window.open(2.html);
27         });
28     });
29 </script>
30 
31 <!--             第三种          -->
32 <script language="JavaScript">
33             window.history.forward(1);
34 
35 </script>
36 <script>
37     $(function(){
38         $("#btn").click(function(){
39             window.location=2.html;
40         })
41     })
42 </script>
43 
44 <!--              第四种            -->
45 <script>
46     $(function(){
47         history.go(1);
48         $("#btn").click(function(){
49             window.location=2.html;
50         })
51     })
52 </script>
53 
54 <!--        第五种     -->
55 <script language="JavaScript">
56     function logout(){
57         window.close(true);
58         window.open("2.html");
59     }
60 </script>
61 </html>

 

阻止页面返回上一页

标签:

原文地址:http://www.cnblogs.com/zsy0712/p/5168943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!