设置输入字段以仅接受带有jQuery的数字

时间:2016-10-26 07:55:47

标签: javascript jquery

我必须定义一个只接受整数的输入文本。

我尝试使用正则表达式,但值的小数部分仍然可见。

我使用了这个功能:

$(document).on("input","input", function(e) {
    this.value = this.value.replace(/[^\d\\-]/g,'');
})

4 个答案:

答案 0 :(得分:1)

这个怎么样?



$('input').on('input blur paste', function(){
 $(this).val($(this).val().replace(/\D/g, ''))
})

<input>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

简单易用。试试吧: 编辑:也可以在onblur事件中调用以防止粘贴。

function numOnly(selector){
  selector.value = selector.value.replace(/[^0-9]/g,'');
}
<input type="text" onkeyup="numOnly(this)" onblur="numOnly(this)">

答案 2 :(得分:0)

您可以在keydown上检测是否为数字,如果是数字,则可以检查粘贴事件并删除所有非数字。这也删除了点。

原始来源: keydown detectPaste remove

以下代码已从原始来源修改。

请尝试:

&#13;
&#13;
$( "#input" ).on("paste", function() {  
    setTimeout(function(){
    if ($('#input').val() != $('#input').val().replace(/\D/g,"")) 
    { 
      $('#input').val($('#input').val().replace(/\D/g,""));
    }
    },10)
});

$('#firstrow').on('keydown', '#input', function(e){-1!==$.inArray(e.keyCode,[46,8,9,27,13])||/65|67|86|88/.test(e.keyCode)&&(!0===e.ctrlKey||!0===e.metaKey)||35<=e.keyCode&&40>=e.keyCode||(e.shiftKey||48>e.keyCode||57<e.keyCode)&&(96>e.keyCode||105<e.keyCode)&&e.preventDefault()});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="firstrow">
  <input id="input" type="text">
</div>
&#13;
&#13;
&#13;

答案 3 :(得分:0)

Finally I solved the above issue with my requirement to type only number is

$(document).on("input", ".skilltxt", function(e) {
                this.value = this.value.replace(/[^\d]/g,'');
             });
             $(".skilltxt").on('paste',function(e) {

                    if(gBrowser=='IE') {
                        var clipboardData, pastedData;
                         clipboardData = e.clipboardData || window.clipboardData;
                          pastedData = clipboardData.getData('Text');

                    }
                    else if((gBrowser=='Firefox')|| (gBrowser=='Chrome')){ 
                          var pastedData = (e.originalEvent || e).clipboardData.getData('text/plain');
                            window.document.execCommand('insertText', false, pastedData)
                    }
                if(Math.floor(pastedData) == pastedData && $.isNumeric(pastedData)){
                   $(this).val($(this).val().replace(/[^\d]/g,''));
                  }
                  else{
                   return false;
                  }
             });
相关问题