0

我有一个 HTML 页面,X.html:

......
<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 的特定区域中编写内容。

我应该怎么办?

4

1 回答 1

0

我相信这会对你有所帮助。

http://www.javascripter.net/faq/writingt.htm

于 2012-09-19T20:02:19.177 回答