所选类上的 Jquery 绑定事件

发布于 2024-08-27 15:14:41 字数 255 浏览 7 评论 0原文

在jquery中是否可以实现将事件绑定到具有特定类的一组控件?在我看来,不能。我用谷歌搜索了一下,发现所有内容都与事件无关。我的代码如下所示 -

$('.numonly').bind('keypress',function(event){
    if (event.which > 31 && (event.which < 48 || event.which > 57)) return false;
});

Is it achievable in jquery to bind an event to a group of control that has certain class? It seems to me, it can't. I google a bit and all that came up are nothing to do with events. Here's how my code looks -

$('.numonly').bind('keypress',function(event){
    if (event.which > 31 && (event.which < 48 || event.which > 57)) return false;
});

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

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

发布评论

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

评论(2

方觉久 2024-09-03 15:14:41

您的代码应该可以工作,这是一个实际的示例: http://jsfiddle.net/g3GsE/

确保您的代码像这样包装,以便在 document.ready 之前不会执行:

$(function() {
  $('.numonly').bind('keypress',function(event){
    if (event.which > 31 && (event.which < 48 || event.which > 57)) return false;
  });
});

如果没有这个,它将立即执行,并且 class="numonly" 元素将不会执行还没有找到...代码需要等到 document.ready ,因此它会在元素出现后触发,以便选择器找到它们。

Your code should work, here's an example of it in action: http://jsfiddle.net/g3GsE/

Make sure that your code is wrapped like this so it doesn't execute until document.ready:

$(function() {
  $('.numonly').bind('keypress',function(event){
    if (event.which > 31 && (event.which < 48 || event.which > 57)) return false;
  });
});

Without this, it would execute immediately and the class="numonly" elements won't be there to find yet...the code needs to wait until document.ready so it fires after the elements are there, so the selector finds them.

微凉徒眸意 2024-09-03 15:14:41

是的,这段代码应该可以正常工作。只需确保提交时在服务器上仔细检查即可。所以那些禁用了 JS 的人无法绕过你的限制。

Yes this code should work just fine. Just make sure you double check it on the server when submitted. So those who disabled JS can't get around your limitation.

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