码迷,mamicode.com
首页 > Web开发 > 详细

js页面跳转

时间:2020-02-03 22:23:06      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:strong   history   script   cat   html   pre   type   ref   href   

第一种:(跳转到b.html)
<script language="javascript" type="text/javascript">
window.location.href="b.html";
</script>
第二种:(返回上一页面)
<script language="javascript">
window.history.go(-1);
</script>
第三种:
<script language="javascript">
window.navigate("b.html");
</script>
第四种:
<script language="JavaScript">
self.location=’b.html’;
</script>
第五种:
<script language="javascript">
top.location=’b.html’;
</script>

 

js页面跳转

标签:strong   history   script   cat   html   pre   type   ref   href   

原文地址:https://www.cnblogs.com/2393920029-qq/p/12257577.html

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