如何使用 jQuery 在文本框中忽略第一个输入的字符为零

发布于 2024-08-24 18:30:23 字数 114 浏览 1 评论 0原文

基本上,我不希望用户输入“0”(零)作为代表整数类型数据的文本框中的第一个字符?

我想绑定一个事件处理程序来使用 jQuery 处理这个问题。

有什么经验吗?

谢谢,

Basically, I do not want the user to enter '0' (zero) as the first character in a textbox which represents data with type of integer?

I would like to bind an event handler to handle this with jQuery.

Any experience?

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑饮青盏花 2024-08-31 18:30:23

如果需要,您可以用整数值替换该值:

$(".IntegerInput").val(function(i, v) {
  return parseInt(v, 10);
});

这将解析 int 并用它替换该值,删除任何前导 0。

Romuald 做了一个神捕,对于您的具体情况,您需要 parseInt() 上的基数参数

You can replace the value with the integer value if you want:

$(".IntegerInput").val(function(i, v) {
  return parseInt(v, 10);
});

This will parse the int and replace the value with it, removing any leading 0's.

Romuald made a god catch, for your specific case you'll need the radix argument on parseInt()

天煞孤星 2024-08-31 18:30:23

你可以简单地在键盘上替换它,如下所示:

$('#test').keyup(function() {
   if ($(this).val() === '0')
   {
      $(this).val('');
   }    
});

You could just simply replace it on the keyup like this:

$('#test').keyup(function() {
   if ($(this).val() === '0')
   {
      $(this).val('');
   }    
});
淡看悲欢离合 2024-08-31 18:30:23

您可以使用类似 $('textbox').val().substr(0,1) != 0; 的内容
如果我们知道您想要完成什么,那就更好了

you can use somthing like $('textbox').val().substr(0,1) != 0;
Though it would be better if we knew what you would like accomplish

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文