jQuery的hover()方法是用于处理鼠标悬停事件的。下面是一篇关于jQuery hover()方法的详细文章,包含相应的源代码。
在jQuery中,hover()方法用于模拟鼠标悬停事件。当鼠标指针悬停在元素上时,会触发指定的第一个函数(mouseenter事件),当鼠标指针离开元素时,会触发指定的第二个函数(mouseleave事件)。
解法1:传递两个函数作为参数
$(selector).hover(function(){
// 鼠标指针悬停在元素上时要执行的代码
}, function(){
// 鼠标指针离开元素时要执行的代码
});
例如,当鼠标悬停在一个段落上时,改变其背景颜色,鼠标离开时,恢复原背景颜色:
$("p").hover(function(){
$(this).css("background-color", "yellow");
}, function(){
$(this).css("background-color", "white");
});
解法2:使用一个函数和一个对象来指定事件/处理器映射
$(selector).hover(handlers);
例如,使用一个对象来指定mouseenter和mouseleave事件的处理器:
$("p").hover({
// mouse_enter事件
mouseenter: function(){
$(this).css("background-color", "yellow");
},
// mouse_leave事件
mouseleave: function(){
$(this).css("background-color", "white");
}
});
注意:在这两种解法中,函数内部的this
指向的是当前鼠标悬停的元素。
评论已关闭