2016-09-30 110 views
1

我正在加載iframe中的本地html文檔,然後嘗試從腳本訪問其文檔。無法獲取iframe的內容

這是JavaScript:

let ifrm = document.getElementById('iframeid'); 
console.log(ifrm); 
let doc = ifrm.contentWindow.document; 
console.log(doc); 

這是我的iframe的聲明:

<iframe src="untitled.html" style="display:none" id="iframeid"></iframe> 

這是結果: The content of head and body gets lost.

正如你所看到的內容爲當我嘗試獲取文檔時,iframe消失。我究竟做錯了什麼?

+0

你的代碼是不是表明你說你正在試圖得到任何具體內容。你想獲得'div.content'嗎?此外,開發工具還顯示ifrane的文檔以及它的內容。沒有消失。 – zer00ne

回答