在新窗口中写入div

时间:2012-09-19 19:54:36

标签: javascript html

我有一个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中的特定区域中编写内容。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

我相信这会对你有帮助。

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