1. 상위 페이지 window.open()이 새 페이지를 엽니다
2. 하위 페이지에서 상위 페이지를 닫습니다
하위 페이지는 상위 페이지를 닫을 수 없으며 다음 메시지가 표시됩니다: 스크립트는 해당 페이지에서 열린 창만 닫을 수 있습니다그러나 다음으로 대체되는 경우: window.opener.location.href='https:/ /www.hao123.com' 하면 되는데, 이유가 뭔가요
认证高级PHP讲师
close 메소드는 스스로 열린 창만 닫을 수 있습니다
<html><본문>
<script type="text/javascript">myWindow=window.open('','','width=200,height=100');myWindow.document.write("이것은 'myWindow'입니다. ");myWindow.document.write("<script>window.opener.close()</script>");myWindow.focus();myWindow.opener.document.write("이것은 상위 창");myWindow.close();</script>
</body></html>
可以关掉子窗口,在子窗口中无效。
close 메소드는 스스로 열린 창만 닫을 수 있습니다
<html>
<본문>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("이것은 'myWindow'입니다. ");
myWindow.document.write("<script>window.opener.close()</script>");
myWindow.focus();
myWindow.opener.document.write("이것은 상위 창");
myWindow.close();
</script>
</body>
으아악 으아악</html>
可以关掉子窗口,在子窗口中无效。