반드시 새로운 window.open() 함수 호출 시 url 을 넣을 필요는 없다.
url 에 빈 문자열 "" 을 넣어주면 빈 윈도우가 뜬다.
window.open() 함수는 윈도 객체를 리턴한다.
해당 윈도 객체에 write() 함수를 이용하여 내용을 채울 수 있다.
코드:
<script type="text/javascript"> var wnd = window.open("", "new window", "width=200,height=100"); wnd.document.write("<html><head><title>New Window Title!</title></head><body><h1 style='font-size:12pt;padding:5px;border:1px solid black;'>Hello</h1></body></html>"); </script>
테스트:
감사합니다
답글삭제