将父页面div内容显示到子页面中

时间:2014-01-22 05:07:57

标签: javascript html jsp

Parent.jsp:

<script>function newWindow(){window.open("child.jsp","child",'toolbar = no, status = no beforeShow');
</script>
<form action="child" name="order" id="email" method="post"><BUTTON class=""  type="submit" onclick=newWindow();>ALL Item</BUTTON></form:form> 
<div id="parent_content"><h1>Testing...</h1></div>

Child.jsp:

<script>window.opener.document.getElementById("parent_content").innerHTML;</script>

我需要使用javascript将“parent_content”div内容显示在子页面中。

1 个答案:

答案 0 :(得分:0)

尝试使用这种方法。

function newWindow(){ window_handler = window.open(...

然后在窗口加载后

window_handler.document.getElementById(TARGET).innerHTML = 
                          document.getElementById('parent_content').innerHTML;