javascript - Allow only numbers and one dot in input - Stack Overflow

Using the following code with jQuery:$('#from-amount').keypress(function(event) {if ((event.w

Using the following code with jQuery:

$('#from-amount').keypress(function(event) {
    if ((event.which != 46 || $(this).val().indexOf('.') != -1) && (event.which < 48 || event.which > 57)) {
        event.preventDefault();
    }
});

It does work, but i can use . at the start and paste (with the mouse and keyboard CMD+V) any string. How can i prevent . at the start and disable paste with keyboard and mouse?

Using the following code with jQuery:

$('#from-amount').keypress(function(event) {
    if ((event.which != 46 || $(this).val().indexOf('.') != -1) && (event.which < 48 || event.which > 57)) {
        event.preventDefault();
    }
});

It does work, but i can use . at the start and paste (with the mouse and keyboard CMD+V) any string. How can i prevent . at the start and disable paste with keyboard and mouse?

Share Improve this question asked Dec 14, 2016 at 17:41 Alexander KimAlexander Kim 18.4k24 gold badges107 silver badges165 bronze badges 10
  • You have JQuery available, right? Why you don't use Jquery maskedinput? you can use any pattern you want. – MarceloBarbosa Commented Dec 14, 2016 at 17:44
  • @MarceloBarbosa because it's a different thing for a different task. I don't need a mask, i just won't allow user to type incorrect data. – Alexander Kim Commented Dec 14, 2016 at 17:46
  • could you please provide an example of the value you want? – MarceloBarbosa Commented Dec 14, 2016 at 17:47
  • Have you tried using regex on the value of the input? – MCMXCII Commented Dec 14, 2016 at 17:47
  • @MarceloBarbosa, here's an example: en.utbs.ws in the field You give you got an input where do you put only numeric data and decimals. – Alexander Kim Commented Dec 14, 2016 at 17:49
 |  Show 5 more ments

1 Answer 1

Reset to default 12

Try this

$('#from-amount').keypress(function(event) {
    if (((event.which != 46 || (event.which == 46 && $(this).val() == '')) ||
            $(this).val().indexOf('.') != -1) && (event.which < 48 || event.which > 57)) {
        event.preventDefault();
    }
}).on('paste', function(event) {
    event.preventDefault();
});

https://jsfiddle/4rsv960t/1/

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743643003a4483283.html

相关推荐

  • javascript - Allow only numbers and one dot in input - Stack Overflow

    Using the following code with jQuery:$('#from-amount').keypress(function(event) {if ((event.w

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信