在绑定事件中使用正则表达式和 jQuery
是否可以在 jQuery 的自定义事件绑定方法中使用正则表达式。 例如
$(selector).bind(myRegex, function(){})
,如果我有两个可以宣布的自定义事件 CustomerAdd
和 CustomerDelete
,我希望能够侦听 客户*
。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试使用正则表达式仅选择某些 DOM 元素,则可以使用 .filter() 方法传入一个函数,该函数随后执行正则表达式逻辑以过滤掉不匹配的元素。
否则不太清楚你想做什么......
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.
Otherwise it's not too clear what you're trying to do...