Javascript
정규식 숫자만 표현
innocent_k
2015. 4. 13. 10:32
//only number $("#historyYear").keyup(function(){ $(this).val($(this).val().replace(/[^0-9]/gi, "")); });