jquery的 on 为什么委托hover 不起作用?

 我来答
前端报错
2014-03-17 · 前端开发技术分享,分析
前端报错
采纳数:1573 获赞数:7026

向TA提问 私信TA
展开全部

在官网api里查到如下说明:

  Deprecated in jQuery 1.8, removed in 1.9: The name "hover" used as a shorthand for the string "mouseenter mouseleave". It attaches a single event handler for those two events, and the handler must examine event.type to determine whether the event is mouseenter or mouseleave. Do not confuse the "hover" pseudo-event-name with the .hover() method, which accepts one or two functions.

----

也就是说这个事件从1.9被弃用了。


可以按如下思路实现hover()的代理效果:

$('.container').on('mouseenter mouseout','p',function(){
    console.log( event.type );//"mouseenter" or "mouseout" 根据这个标志来切换你的分支
});
迷夨灬果兒ゞ6e3a8f
2015-08-12 · TA获得超过963个赞
知道小有建树答主
回答量:486
采纳率:100%
帮助的人:383万
展开全部

JQuery的on()是不支持绑定的hover的,官方API有说

  Deprecated in jQuery 1.8, removed in 1.9: The name "hover" used as a shorthand for the string "mouseenter mouseleave". It attaches a single event handler for those two events, and the handler must examine event.type to determine whether the event is mouseenter or mouseleave. Do not confuse the "hover" pseudo-event-name with the .hover() method, which accepts one or two functions.

因为在已经被移除了,所以如果想做出移出移入效果,可以参考下面代码:

$('.class').on('mouseenter mouseout',function(event){
    console.log( event.type );//"mouseenter" or "mouseout" 根据这个标志来切换你的分支
});
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
崔师尊
2015-07-29 · TA获得超过9317个赞
知道大有可为答主
回答量:3387
采纳率:36%
帮助的人:1760万
展开全部
查了下资料,发现好像没有hover这个事件,jQuery的hover事件是一个封装,不是真正的事件。这里是出处:http://my14686.iteye.com/blog/1254676
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
随性亻
2015-06-05 · TA获得超过4180个赞
知道小有建树答主
回答量:4622
采纳率:84%
帮助的人:632万
展开全部
在官网api里查到如下说明:

  Deprecated in jQuery 1.8, removed in 1.9: The name "hover" used as a shorthand for the string "mouseenter mouseleave". It attaches a single event handler for those two events, and the handler must examine event.type to determine whether the event is mouseenter or mouseleave. Do not confuse the "hover" pseudo-event-name with the .hover() method, which accepts one or two functions.
----
也就是说这个事件从1.9被弃用了。

可以按如下思路实现hover()的代理效果:

$('.container').on('mouseenter mouseout','p',function(){
console.log( event.type );//"mouseenter" or "mouseout" 根据这个标志来切换你的分支
});
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-03-17
展开全部
去jquery吧吧……这儿是VB吧……
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式