자바스크립트(JS) - Input에 숫자만 입력 (with 정규식)
// 숫자만 입력되도록 변경
$("타겟").on('input', function () {
    this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\\..*)\\./g, '$1');
});
  • share