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?
- 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
1 Answer
Reset to default 12Try 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
评论列表(0条)