Hi

(javascript) window 객체 본문

WEB(웹)

(javascript) window 객체

SharingWorld 2018. 6. 22. 10:36
window 객체

window 객체

자바 스크립트의 브라우저 기반 최상위 객체


alert(), prompt() 함수 모두 window 객체의 메서드 입니다.
window.alert();

기본 변수와 window 객체

var 키워드로 선언한 일반 변수도 모두 window 객체의 속성이 된다.

새로운 window 객체 생성

window.open(URL, name, features, replace);
window.open(); // 새로운 웹브라우저 윈도우가 만들어집니다.
window.open('http://hanbit.co.kr', 'child', 'width=600, height: 300', true);

open() 메서드 : 새로운 window 객체를 생성하는 메소드 이면서, 윈도우 객체를 리턴한다.

//변수를 선언합니다.
var child = window.open(", ", 'width=300, height= 200');

// 출력합니다.
child.document.write('<h1>From Parent Window</h1>');


'WEB(웹)' 카테고리의 다른 글

(javascript) 함수 객체 : 함수도 객체다  (0) 2018.06.22
(javascript) isNaN()  (0) 2018.06.22
브라우저 객체 모델  (0) 2018.06.22
jQuery 와 $  (0) 2018.06.22
(jquery) $(documnet).ready()  (0) 2018.06.22