jquery如何取消hover事件
今天用jquery写hover事件,临时遇到个需求需要遇到特定条件能够取消hover事件,但是使用
$("a").unbind("hover");
起不到任何作用,最后在stackover上查到解决办法:
$("a").unbind('mouseenter mouseleave');
在jquery的官方文档上有这方面的说明: jQuery documentation
相关推荐
MaureenChen 2020-03-01
HSdiana 2019-12-27
lunareclipse 2019-12-23
Uching 2006-11-13
PHP基础学习 2019-01-15
dazhifu 2019-07-01
刁连通 2019-01-15
NARUTOLUOLUO 2016-07-11
vavid 2016-01-16
yaodilu 2019-06-27
sorryericsson 2014-11-18
realitycss 2014-07-24
AlisaClass 2014-05-05