我无法绑定mouseover mouseon事件。
我可以用off取消绑定他们
$('.overview li a img').off('mouseover mouseon');
但似乎没有效果。
$('.overview li a img').on('mouseover mouseon');
有什么建议吗?
答案 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()函数需要一个绑定函数。