본문 바로가기
[Front-End] 프론트엔드/[javascript] 자바스크립트

javascript 자바스크립트 autofocus 입력 양식 자동 초점 설정 소스 코드

by codeomni 2018. 8. 17.
반응형

 

안녕하세요.

 

 

자바스크립트는 html과 css로 만든 페이지를 동적으로 만듭니다.

웹 페이지에서 아이디나 비밀번호 부분이 입력 부분이 다음 칸으로 넘어갑니다.

오토포커스를 사용하면 쉽게 구현할 수 있습니다.

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
    <head>
        <title>codeomni.tistory.com javascript autofocus 입력 양식 자동 초점 설정 소스 코드</title>
        <script>
            window.onload = function () {
            var input1 = document.querySelectorAll('input')[0];
            var input2 = document.querySelectorAll('input')[1];
            input1.onkeydown = function () {
                if (6 <= input1.value.length) {
                    input2.focus();
                }
            };
            input2.onkeydown = function (event) {
                var event = event || window.event;  
                if (event.keyCode == 8 && input2.value.length == 0) {
                    input1.focus();
                }
            };
        };
        </script>
    </head>
    <body>
        <div>
            <h1>codeomni.tistory.com</h1>
        </div>
        <div>
            <label for="ID">학번</label>
            <input type="text" maxlength="10" name="ID">
            <br>
            <label for="PW">비밀번호</label>
            <input type="password" maxlength="10" name="PW">
        </div>
    </body>
</html>
cs

 

 

 

 

 실행 화면입니다.

댓글