<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
/*
브라우저 객체 모델(BOM)
- window(최상위 객체)
- location 객체
- navigator 객체
- history 객체
- screen 객체
- document 객체
*/
a = 10;
//alert(a);
window.alert(a);
let sub = open("", "", "width = 320, height = 200") // 팝업 생성
// open : 팝업 차단이면 null 결과를 반한다. null은 false와 같은 의미이므로 아래와같이 쓸 수 있다.
if(!sub){
alert('팝업창 옵션을 확인하세요')
}
sub.moveTo(100, 100);
setInterval(function() {
sub.moveBy(20,20)
}, 1000)
</script>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
var sub = window.open("", "", "width = 400, height = 500")
let width = screen.width
let height = screen.height
sub.moveTo(0, 0)
sub.resizeTo(width, height)
</script>
</head>
<body>
</body>
</html>
'웹 프로그래밍 > JavaScript' 카테고리의 다른 글
[JS] 야구게임 만들어보기 (0) | 2020.06.18 |
---|---|
[JS] 행맨 게임 만들어보기(배열, while, indexOf, array.includes) (0) | 2020.06.18 |
[JS] 'for in'(length 만큼 돌리는 것이 더 안전) VS 'for of' (0) | 2020.06.18 |
[JS] 객체(Object)깊은 복사(deep copy) 편하게 하기 (1) | 2020.06.17 |
[JS] 배열(Array)깊은 복사(deep copy) 편하게 하기 (0) | 2020.06.17 |