Allowing just Numeric Text on Input Text field

后端 未结 3 1863
渐次进展
渐次进展 2021-02-09 00:11

I was using Jquery Numeric plugin but I found that is not working on FireFox 3.6 on Osx (does not allow pasting).

I\'m searching a Jquery plugin or Javascript snippet

3条回答
  •  遥遥无期
    2021-02-09 00:21

    Thanks systempuntoout.. I've fixed this with following script

    $('#input').keyup( function() {
      var $this = $(this);
      $this.val($this.val().replace(/[^\d.]/g, ''));     
    });
    

提交回复
热议问题