JS 제어 텍스트 상자: 은행 카드 번호를 입력하면 4자리 자동 공백 구분

791 단어



    test
   
        window.onload =function() {
            document.getElementById("test").onkeyup =function() {
                  this.value =this.value.replace(/\s/g,'').replace(/\D/g,'').replace(/(\d{4})(?=\d)/g,"$1 ");;
            };
        };
   



   


========================================================
프론트에서 숫자를 읽을 때 자동으로 공백을 무시합니다
String newStr = "a b c".replaceAll(" ","");
 a b c d abc

좋은 웹페이지 즐겨찾기