2012-09-19 58 views
0

我有一個HTML頁面,X.html:寫一個div在新窗口中

...... 
<div id = "content"></div> 
...... 

我用下面的代碼來打開X.html和想寫的內容DIV的東西。

content = "show in the div in the new window"; 
newWindow = window.open('X.html',''); 
newWindow.document.getElementById("content").innerHTML = content; 

這是行不通的。 我使用了Firebug,代碼在新窗口彈出後結束。我不想在X.html中編寫完整的內容,我想用這種簡單的方法在X.html中的特定區域編寫內容。

我該怎麼辦?

+0

試'newWindow.getElementById( 「內容」)的innerHTML =內容;' –

+0

嘗試newWindow.document.getElementById( 「內容」)的innerHTML =內容。 – Dev

+0

對不起,不行。 – qqibrow

回答

相關問題