在绑定事件中使用正则表达式和 jQuery

发布于 2024-07-29 18:08:05 字数 217 浏览 4 评论 0原文

是否可以在 jQuery 的自定义事件绑定方法中使用正则表达式。 例如

$(selector).bind(myRegex, function(){})

,如果我有两个可以宣布的自定义事件 CustomerAddCustomerDelete,我希望能够侦听 客户*

Is it possible to use a regex in jQuery's bind method for custom events. Something like...

$(selector).bind(myRegex, function(){})

For example, if I have two custom events, CustomerAdd, and CustomerDelete that can be announced, I'd like to be able to listen for Customer*.

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

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

发布评论

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

评论(1

愛上了 2024-08-05 18:08:05

如果您尝试使用正则表达式仅选择某些 DOM 元素,则可以使用 .filter() 方法传入一个函数,该函数随后执行正则表达式逻辑以过滤掉不匹配的元素。

$(selector).filter(function (index) {
                  return /myregex/.test($(this).attr("id"));
                })

否则不太清楚你想做什么......

If you're trying to use a regex to select only certain DOM elements, you can use the .filter() method to pass in a function that would then perform regex logic to filter out the elements that don't match.

$(selector).filter(function (index) {
                  return /myregex/.test($(this).attr("id"));
                })

Otherwise it's not too clear what you're trying to do...

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