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
内容显示在子页面中。
答案 0 :(得分:0)
尝试使用这种方法。
function newWindow(){ window_handler = window.open(...
然后在窗口加载后
window_handler.document.getElementById(TARGET).innerHTML =
document.getElementById('parent_content').innerHTML;