* 새창 띄우고 이동시키기
<script>
var w = window.open("", "mail_preview", "width=700,height=600,scrollbars=1,resizable=1,status=0");
w.focus();
w.location.href = 'http://www.google.com';
</script>
var w = window.open("", "mail_preview", "width=700,height=600,scrollbars=1,resizable=1,status=0");
w.focus();
w.location.href = 'http://www.google.com';
</script>
* 새창 띄우고 내용 채워넣기
<script>
var w = window.open("", "mail_preview", "width=700,height=600,scrollbars=1,resizable=1,status=0");
w.focus();
w.document.open();
w.document.write('<span style="color:#EF00CD">내용입니다.</span>');
w.document.close();
</script>
var w = window.open("", "mail_preview", "width=700,height=600,scrollbars=1,resizable=1,status=0");
w.focus();
w.document.open();
w.document.write('<span style="color:#EF00CD">내용입니다.</span>');
w.document.close();
</script>
'JavaScript' 카테고리의 다른 글
[JavaScript] MD5 (0) | 2010.09.16 |
---|---|
[JavaScript] URI encoding (0) | 2010.04.01 |
[jQuery] ajax 간단 예제 (0) | 2010.03.04 |
[jQuery] jQuery에서 outerHTML 가져오기 (0) | 2010.03.02 |
[jQuery] 새 엘리먼트 추가시 이벤트 핸들러 깨지는 현상. (0) | 2010.03.02 |