绑定和解除鼠标悬停鼠标

时间:2012-10-21 20:06:57

标签: jquery

我无法绑定mouseover mouseon事件。

我可以用off取消绑定他们

$('.overview li a img').off('mouseover mouseon');

但似乎没有效果。

$('.overview li a img').on('mouseover mouseon');

有什么建议吗?

2 个答案:

答案 0 :(得分:6)

没有mouseon事件。有:

此外,您应该使用处理程序函数来绑定事件:

$(".overview li a img").on("mouseover", function() {
    console.log("Mouse is over");
});

这是每次触发事件时执行的功能。

答案 1 :(得分:0)

$('.overview li a img').on({'mouseover mouseenter':function(event){
  alert("hello");
}},null,null);

$('.overview li a img').on({'mouseover':function(event){
  alert("hello")}, 
  'mouseenter':function(event){
  alert("world");
}},null,null);

应该可以工作,因为.on()函数需要一个绑定函数。