js中实现页面跳转的方法有哪些_JS跳转页面「建议收藏」

js中实现页面跳转的方法有哪些_JS跳转页面「建议收藏」<html><head><scriptlanguage=”javascript”><!functionold_page(){window.locatio

js中实现页面跳转的方法有哪些_JS跳转页面「建议收藏」"

<html>
<head>
<script language="javascript"><!--
    
    function old_page()
    {
        window.location = "http://www.baidu.com"
    }
    function replace()
    {
        window.location.replace("http://www.baidu.com")
    }
    function new_page()
    {
        window.open("http://www.baidu.com")
    }
// --></script>
</head>
<body>
<input type="button" οnclick="new_page()" value="new_page"/>
<BR />
<input type="button" οnclick="old_page()" value="old_page"/>
<BR />
<input type="button" οnclick="replace()" value="replace"/>
</body>
window.location和window.open的区别

window.location = "http://www.baidu.com" 跳转后有后退功能

window.location.replace("http://www.baidu.com") 跳转后没有后退功能

window.open("http://www.baidu.com") 要新的窗口打开链接


本人亲自测试 :window.location.replace 例如Index 和Index2 页面,从Index 页面到Index2页面后在进行后退的时候 可以 把来自
Index2的的返回挡在Index2 页面,不返回Index 页面

转载自:https://blog.csdn.net/xia9527/article/details/7635054

今天的文章js中实现页面跳转的方法有哪些_JS跳转页面「建议收藏」分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/71552.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注