- window.location.href、location.href 是本頁面跳轉 // window可以省略
- parent.location.href 是上一層頁面跳轉
- top.location.href 是最外層的頁面跳轉
在登陸界面中加入如下代碼:
<script language="JavaScript"> if (window != top) top.location.href = location.href; </script>
在登陸界面中加入如下代碼:
<script language="JavaScript"> if (window != top) top.location.href = location.href; </script>
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。