[ jQuery ] input 매번 입력할 때, 감지할 수 있는 방법

JooKit 주킷 2021. 6. 8. 10:33
목차 접기
728x90
반응형
 // 모든 텍스트의 변경에 반응합니다.
    $("#tel").on("propertychange change keyup paste input", function() {

        // 현재 변경된 데이터 셋팅
        var newValue = $(this).val();

        // 현재 실시간 데이터 표츌
        //alert("텍스트 :: " + newValue);

        if ( newValue.match("-")) {
            $('.tel_hiper_error').removeClass('none');
        } else {
         $('.tel_hiper_error').addClass('none')
        }
     });
728x90
반응형
LIST