ETC
[JavaScript] 윈도우 새창 띄우기
nabina
2013. 12. 2. 23:52
728x90
window.open() 메소드를 사용하면 됨.
Specification.
window.open( url, name, properties );
Properties.
scrollbars = yes / no resizeable = yes / no menubar = yes / no toolbar = yes / no width = 100 height = 100 left = 10 top = 10
Use.
window.open( "http://naver.com", "네이버", "scrollbars=yes, resizeable=no, menubar=no, toolbar=no" );
반응형