- 01. 브라우저 객체 : window 객체 메서드 : windows.alert() : 알림창 표시하기
- 01. 브라우저 객체 : window 객체 메서드 : windows.confirm() : 확인창 표시하기
- 01. 브라우저 객체 : window 객체 메서드 : windows.prompt() : 입력창 표시하기
- 01. 브라우저 객체 : window 객체 메서드 : windows.open() : 새로운 창 표시하기
- 01. 브라우저 객체 : window 객체 메서드 : windows.close() : 새로운 창 닫기
- 01. 브라우저 객체 : window 객체 메서드 : windows.focus() : 페이지 포커스 설정
- 01. 브라우저 객체 : window 객체 메서드 : windows.blur() : 페이지 포커스가 벗어났을때 설정
- 01. 브라우저 속성 : Window.innerWidth: 브라우저의 가로 길이값
- 01. 브라우저 속성 : Window.innerHeight: 브라우저의 세로 길이값
- 01. 브라우저 속성 : Window.outerWidth: 브라우저의 화면 전체의 가로 길이값
- 01. 브라우저 속성 : Window.outerHeight: 브라우저의 화면 전체의 세로 길이값
- 01. 브라우저 속성 : Window.screenTop: 브라우저의 위쪽 위치 값
- 01. 브라우저 속성 : Window.screenY: 브라우저의 위쪽 위치 값
- 01. 브라우저 속성 : Window.screenX: 브라우저의 왼쪽 위치 값
- 01. 브라우저 객체 : window 객체 메서드 : Window.moveBy(): 브라우저의 위치를 상대적으로 이동
- 01. 브라우저 객체 : window 객체 메서드 : Window.moveTo(): 브라우저의 위치를 절대값으로 이동
- 01. 브라우저 객체 : window 객체 메서드 : Window.resizeBy(): 브라우저의 크기를 상대값으로 조절
- 01. 브라우저 객체 : window 객체 메서드 : Window.resizeTo(): 브라우저의 크기를 절대값으로 조절
- 01. 브라우저 객체 : window 객체 메서드 : Window.scrollBy(): 브라우저의 스크롤 크기를 상대적으로 조절
- 01. 브라우저 객체 : window 객체 메서드 : Window.scrollX: 브라우저의 가로 스크롤 크기
- 01. 브라우저 객체 : window 객체 메서드 : Window.scrollY: 브라우저의 세로 스크롤 크기
- 05. 브라우저 객체 : screen 객체 속성 : window.screen.width : 화면의 가로 값
- 05. 브라우저 객체 : screen 객체 속성 : window.screen.height : 화면의 세로 값
- 05. 브라우저 객체 : screen 객체 속성 : window.screen.availWidth : 실제 이용 가능한 화면의 가로 값
- 05. 브라우저 객체 : screen 객체 속성 : window.screen.availHeight : 실제 이용 가능한 화면의 세로 값
- 05. 브라우저 객체 : screen 객체 속성 : window.screen.colorDepth : 사용 가능한 색상 수
- 05. 브라우저 객체 : screen 객체 속성 : window.screen.pixelDepth : 한 픽실당 비트 수
- 06. 브라우저 객체 : location 객체 메서드 : location.assign() : 현재 위치를 이동
- 06. 브라우저 객체 : location 객체 메서드 : location.reload() : 새로 고침
- 06. 브라우저 객체 : location 객체 메서드 : location.replace() : 위치 이동
- 06. 브라우저 객체 : location 객체 메서드 : location.toString() : 주소 문자열 반환
- 06. 브라우저 객체 : location 객체 속성 : location.href : 주소
- 06. 브라우저 객체 : location 객체 속성 : location.host : 호스트 이름
- 06. 브라우저 객체 : location 객체 속성 : location.hostname : 호스트 이름
- 06. 브라우저 객체 : location 객체 속성 : location.port : 포트 번호
- 06. 브라우저 객체 : location 객체 속성 : location.pathname : 디렉토리 경로
- 06. 브라우저 객체 : location 객체 속성 : location.hash : 앵커이름
- 06. 브라우저 객체 : location 객체 속성 : location.search : 요청 매개변수
- 06. 브라우저 객체 : location 객체 속성 : location.protocol : 프로토콜 종류
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.appCodeName : 브라우저의 코드명을 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.appName : 브라우저의 이름을 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.appVersion : 브라우저의 버전을 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.cookieEnabled : 브라우저의 쿠키 사용 가능 여부를 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.language : 브라우저에서 사용되는 언어를 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.onLine : 브라우저가 온라인인지 여부를 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.platform : 브라우저가 실행되는 플랫폼 정보를 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.product : 브라우저에서 사용되는 엔진 이름을 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.userAgent : 브라우저와 운영체제 정보를 반환
- 07. 브라우저 객체 : navigator 객체 속성 : navigator.onLine : 네트워크 상태 가져오기(225)
- 브라우저 객체 : history 객체 속성 : history.length : URL 개수를 반환
- 08. 브라우저 객체 : history 객체 메서드 : history.back() : 페이지 뒤로 가기
- 08. 브라우저 객체 : history 객체 메서드 : history.forward() : 페이지 앞으로 가기
- 08. 브라우저 객체 : history 객체 메서드 : history.go() : 원하는 페이지로 이동
01. 브라우저 객체 : window 객체 메서드 : windows.alert() : 알림창 표시하기
{
const btn = document.querySelector("#sample1 .btn1");
btn.addEventListener("click", () => {
alert("알림창");
});
}
02. 브라우저 객체 : window 객체 메서드 : windows.close() : 새로운 창 닫기
{
const btn = document.querySelector("#sample2 .btn1");
btn.addEventListener("click", () => {
const conf = confirm("오늘 공부할 준비가 되었습니까?");
document.querySelector("#sample2 .view").innerText = conf;
});
}
03. 브라우저 객체 : window 객체 메서드 : windows.focus() : 페이지 포커스 설정
{
const btn = document.querySelector("#sample3 .btn1");
btn.addEventListener("click", () => {
const conf = prompt("오늘 공부할 준비가 되었습니까?");
document.querySelector("#sample3 .view").innerText = conf;
});
}