JAVA/Jquery
jquery input태그 자동넘기기(핸드폰번호,팩스번호 등)
왕왕왕왕
2016. 12. 8. 14:47
function fn_autoNextFocus() {
$("input").keyup (function () {
var charLimit = $(this).attr("maxlength");
if (this.value.length >= charLimit) {
$(this).next("input").focus();
return false;
}
})
};