搜尋

首頁  >  問答  >  主體

javascript - iframe框架內頁控制父框架頁面跳到某個位址

#如圖所示,如何在B頁面用js控制A頁面跳到某個位址?

淡淡烟草味淡淡烟草味2755 天前940

全部回覆(3)我來回復

  • 仅有的幸福

    仅有的幸福2017-06-23 09:13:55

    如果是同源的話,直接 window.parent.location.href 就可以。
    不同來源又沒有 A 頁面控制權的話無解。

    回覆
    0
  • 三叔

    三叔2017-06-23 09:13:55

    B頁面的js裡window.parent.window.location.href = '//www.baidu.com'

    回覆
    0
  • 给我你的怀抱

    给我你的怀抱2017-06-23 09:13:55

    a.html

    <!DOCTYPE html>
    <html>
    <head>
        <title></title>
        <meta charset="utf-8">
    </head>
    <body>
        <iframe src="b.html"></iframe>
    </body>
    </html>

    b.html

    <!DOCTYPE html>
    <html>
    <head>
        <title></title>
        <meta charset="utf-8">
        <script type="text/javascript">
        function parentJump() {
            window.parent.location.href = 'http://www.baidu.com/';
        }
        </script>
    </head>
    <body>
        <button onclick="parentJump();">父页面跳到百度</button>
    </body>
    </html>

    使用window.parent從iframe中的頁面存取父窗體。

    回覆
    0
  • 取消回覆