- 혼자서 JavaScript를 공부하고 실습하면서 작성한 글입니다.
- 처음 공부하고 있어서 부족하거나 잘못된 정보가 있을 수 있습니다. (2021.06.24 목)
- 조금 더 자세히 알게 되거나 수정할 부분이 있으면 바로바로 수정하겠습니다.
BOM (Browser Object Model) - 브라우저 객체 모델
- 브라우저에 계층적으로 내장된 객체들을 브라우저 객체 모델이라 한다.
- window는 브라우저 객체의 최상위 객체가 된다.
window 객체
메서드 종류
종류 | 설명 |
---|
open(url,windowName[,option]) | 새 창을 열 때 사용 |
alert() | 경고 창을 띄움 |
prompt() | 질의 응답 창을 띄움 |
confirm() | 확인 / 취소 창을 띄움 |
moveTo(x,y) | 창의 위치를 이동시킬 때 사용 |
resizeTo(width,height) | 창의 크기를 변경시킬 때 사용 |
setInterval(function, millseconds) | 일정 간격으로 지속적으로 실행문을 실행 시킬 때 사용 |
setTimeout(function, milliseconds) | 일정 간격으로 한 번만 실행문을 실행 시킬 때 사용 |
<!DOCTYPE html>
<html>
<head>
<title>open()</title>
</head>
<body>
<button onclick="myFunction()">naver</button>
<script>
function myFunction() {
window.open("https://www.naver.com", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
}
</script>
</body>
</html>
screen 객체
- 사용자의 모니터 정보(속성)를 제공하는 객체.
종류 | 설명 |
---|
screen.width | 화면의 너빗값을 반환 |
screen.height | 화면의 높잇값을 반환 |
screen.availWidth | 작업 표시줄을 제외한 화면의 너빗값 반환 |
screen.availHeight | 작업 표시줄을 제외한 화면의 높잇값을 반환 |
screen.colorDepth | 사용자 모니터가 표현 가능한 컬러 bit를 반환 |
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<script>
document.write("width: "+screen.width, "<br>");
document.write("height: "+screen.height, "<br>");
document.write("availWidth: "+screen.availWidth, "<br>");
document.write("availHeight: "+screen.availHeight, "<br>");
document.write("colorDepth: "+screen.colorDepth, "<br>");
</script>
</body>
</html>
location 객체
- 사용자 브라우저의 주소 창에 url에 대한 정보(속성)와 새로 고침 기능(메서드)을 제공하는 객체
종류 | 설명 |
---|
location.href | 주소 영역에 참조 주소를 설정하거나 url을 반환 |
location.hash | url에 해시값(#에 명시된 값)을 반환 |
location.hostname | url에 호스트 이름을 설정하거나 반환 |
location.host | url에 호스트 이름과 포트 번호를 반환 |
location.port | url에 포트 번호를 반환 |
location.protocol | url에 프로토콜을 반환 |
location.search | url에 쿼리(요청 값)를 반환 |
location.reload() | 새로 고침 |
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<script>
document.write("href :"+location.href, "<br>");
document.write("hash :"+location.hash, "<br>");
document.write("hostname :"+location.hostname, "<br>");
document.write("host :"+location.host, "<br>");
document.write("protocol :"+location.protocol, "<br>");
</script>
</body>
</html>
history 객체
- 사용자가 방문한 사이트 중 이전에 방문한 사이트와 다음 방문한 사이트로 다시 돌아갈 수 있는 속성과 메서드를 제공
종류 | 설명 |
---|
history.back() | 이전 방문한 페이지로 이동 |
history.forward() | 다음 방문한 페이지로 이동 |
history.go(이동 숫자) | 이동 숫자가 -2 이면 2단계 이전 페이지로 이동 |
history.length | 방문 기록에 저장된 목록의 개수를 반환 |
navigator 객체
- 현재 방문자가 사용하는 브라우저 정보와 운영체제의 정보를 제공하는 객체
종류 | 설명 |
---|
navigator.appCodeName | 방문자의 브라우저 코드명을 반환 |
navigator.appName | 방문자의 브라우저 이름을 반환 |
navigator.appVersion | 방문자의 브라우저 버전 정보를 반환 |
navigator.language | 방문자의 브라우저 사용 언어를 반환 |
navigator.product | 방문자의 브라우저 사용 엔진 이름 반환 |
navigator.platform | 방문자의 브라우저를 실행하는 운영체제를 반환 |
navigator.userAgent | 방문자의 브라우저와 운영체제 종합 정보를 제공 |
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<script>
document.write("appCodeName: "+navigator.appCodeName,"<br><br>");
document.write("appName: "+navigator.appName,"<br><br>");
document.write("appVersion: "+navigator.appVersion,"<br><br>");
document.write("language: "+navigator.language,"<br><br>");
document.write("product: "+navigator.product,"<br><br>");
document.write("platform: "+navigator.platform,"<br><br>");
document.write("userAgent: "+navigator.userAgent,"<br><br>");
</script>
</body>
</html>
Author And Source
이 문제에 관하여(12. JavaScript - BOM), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@hih0327/12.-JavaScript-BOM
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)