jquery:当“悬停”时执行某些操作是否在“.myBox”上解除绑定?
Jquery 中是否有可能拥有它,因此,当我在 .myBox
上取消绑定悬停时,它会执行某些操作?我想将其添加到我正在制作的第一个插件中,不知道如何?
当取消绑定悬停在特定元素上时,我总是希望完成一些特定的事情,例如 css('cursor', 'default') 和其他一些事情。有没有一种方法可以在某些内容解除绑定时触发某些内容,而不必在声明解除绑定时执行该操作?
is it possible in Jquery to have it so, when i unbind hover, on .myBox
, it does something? I wanted to add that into the first plugin i'm making, wasn't sure how?
there's specific things I want to always be done when unbinding hover on specific elements, like css('cursor', 'default') and a few other things. Is there a way to have stuff triggered when something is unbound, without having to do that stuff when declaring the unbind?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的唯一方法是扩展
unbind
函数本身:The only way to do this would be to extend the
unbind
function itself: