[jQuery] input 박스에 maxlength 만큼 입력했을 때 자동으로 다음 박스로 이동하기
2018. 4. 12. 15:24ㆍJavascript/Javascript+jQuery
반응형
$(".inputs").keyup(function () {
if (this.value.length == this.maxLength) {
$(this).next('.inputs').focus();
}
});
출처: http://88240.tistory.com/460?category=409238 [shaking blog]
반응형
'Javascript > Javascript+jQuery' 카테고리의 다른 글
POST 전송 (jQuery), POST 이동, POST 새창 (0) | 2018.04.13 |
---|---|
jquery POST 방식으로 다른 페이지로 이동하는 방법 (0) | 2018.04.13 |
[ Firebase ] Database JavaScript 연동하기 (6) | 2018.04.04 |
[ Firebase ] 웹에서 클라우드 메시징 요청보내기 (0) | 2018.04.04 |
메세지 창 띄우기 (0) | 2018.03.27 |