扩展 jQuery 的类名选择器
我如何重写 $(".className") 以便
if(className="xyz") then alert("Hello")
然后执行 JQuery 正在执行的操作。
How can I override $(".className")
such that
if(className="xyz") then alert("Hello")
and then do what JQuery is doing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
据我了解,您想要重写/扩展 jQuery 中查找节点的方法。我在代码中找不到任何可以附加到该功能的挂钩和/或侦听器,因此我想如果您想实现此功能,则必须修改源代码。
我建议添加某种事件侦听器接口,以便您可以将其附加到适合您需要的任意选择器。
From what I understand, you want to override/extend the method in jQuery that finds nodes. I can't find any hooks and/or listeners that can be attached to that functionality in the code, so I guess you'll have to modify the source code if you want to achieve this functionality.
I'd suggest adding some sort of event listener interface so you can attach this to arbitrary selectors that fit your needs.
试试这个:
try this :
你是这个意思吗?
Is this what you mean?