javascript父子頁面通訊執行個體詳解_javascript技巧

來源:互聯網
上載者:User

本文執行個體講述了javascript父子頁面通訊的實現方法。分享給大家供大家參考。具體分析如下:

如果一個domain為 www.abc.com的頁面內部包含一個name屬性值為childFrame的iframe,並且這個iframe的domain為 static.abc.com。那麼可以通過設定父頁面的domain為abc.com,子頁面的domain也為abc.com,然後實現父子頁面通訊(我這裡有點混淆父子頁面和跨域的概念。

不採用上面的方法也是可以實現父子頁面相互訪問的。
方法是:在父頁面用window.frames[0]或者window.frames["childFrame"],返回的是一個Window對象,然後就可以通過:

var childWindow = window.frames[0];// 或者 window.frames["childFrame"] 或者直接childFrame 或者childFrame.window var childDoc = childWindow.contentDocument || childWindow.document; 

利用childWindow可以訪問執行子頁面定義的函數,利用childDoc可以訪問子頁面的DOM節點。

而子頁面要訪問父頁面,可以通過parent(Window對象),如果一個頁面已經是頂級頁面那麼parent==self將返回true:

if(parent != self) {// 當前頁面有父頁面   // 調用父頁面的函數   parent.parentFunc();   var parentDoc = parent.contentDocument || parent.document;   // 訪問父頁面的DOM節點 }

www.abc.com父頁面:

document.domain = 'abc.com';var ifr = document.createElement('iframe');ifr.src = 'http://static.abc.com/';ifr.style.display = 'none';document.body.appendChild(ifr);ifr.onload = function(){  var doc = ifr.contentDocument || ifr.contentWindow.document;  // 在這裡操縱子頁面  alert(doc.getElementsByTagName("h1")[0].childNodes[0].nodeValue);};

www.static.abc.com子頁面:

複製代碼 代碼如下:
document.domain = 'abc.com';

希望本文所述對大家的javascript程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.