2019.10.01

 

 숫자만 입력받아야하는 text box에 숫자인지 아닌지 판별하기

 

화면 예시

 

1
2
3
4
5
<div>
    <label>금액</label> 
    <input type="text" name="test" id="test">
</div>
<button type="button" id="testBtn">확인</button>
 

 

1
2
3
4
5
6
$('#testBtn').click(function() {
    var testCheck = $('#test').val();
    if (isNaN(testCheck )) { // 반대의 경우, isNaN(testCheck) == false
        alert('숫자만 입력하세요');
    } 
});
 

 

 

결과 화면

+ Recent posts