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

被iframe页面更改顶层的跳转链接

时间:2020-06-28 22:30:47      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:修改   top   class   doctype   utf-8   controls   port   head   function   

界面被其他网页Iframe,需要修改顶层链接---方法如下

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <iframe src="./b.html" frameborder="0"></iframe>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <button onclick="myButton()">跳轉頂級頁面</button>
  <script>
    function myButton() {
      console.log(aaa)
      window.top.location.href = http://10.10.10.11:6868/login.html
    }
  </script>
</body>
</html>

 

被iframe页面更改顶层的跳转链接

标签:修改   top   class   doctype   utf-8   controls   port   head   function   

原文地址:https://www.cnblogs.com/sugartang/p/13095597.html

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