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