hover事件就是鼠标悬停事件。此外,你还可以额外传递给事件处理函数一些数据。
此外,你可以为同一元素多次调用该函数,从而绑定多个事件处理函数。触发hover事件时,jQuery会按照绑定的先后顺序依次执行绑定的事件处理函数。
要删除通过hover()
绑定的事件,请使用unbind()函数。
该函数属于jQuery
对象(实例)。
hover()
函数主要有以下两种用法:
用法一:
jQueryObject.hover( handlerIn , handlerOut )
分别指定鼠标移入、移出元素时的事件处理函数。
用法二:jQuery 1.4 新增支持该用法。
jQueryObject.hover( handlerInAndOut )
用法一的变体。当鼠标移入、移出元素时的事件处理函数相同时,只需直接传入一个处理函数作为参数即可。
请根据前面语法部分所定义的参数名称查找对应的参数。
参数 | 描述 |
---|---|
handlerIn | Function类型鼠标移入元素时需要执行的处理函数。 |
handlerOut | Function类型鼠标移出元素时需要执行的处理函数。 |
handlerInAndOut | Function类型鼠标移入、移出元素时需要执行的处理函数。 |
hover()
函数的所有参数都是函数,函数内的this
指向当前DOM元素。hover()
还会为其传入一个参数:表示当前事件的Event对象。
hover()
函数的返回值为jQuery类型,返回当前jQuery对象本身。
hover()
函数与on()函数具有以下等价代码:
$( selector ).hover( handlerInOut ); // 等价于 $( selector ).on( "mouseenter mouseleave", handlerInOut );
请参考下面这段初始HTML代码:
id="a1" href="http://www.365mini.com">CodePlayer
id="a2" href="http://www.365mini.com/doc">中文手册
现在,我们为所有a元素的hover事件绑定处理函数(可以绑定多个,触发时按照绑定顺序依次执行):
// 为所有button元素的hover事件绑定处理函数 // 鼠标移入链接时,显示红色;移出链接时,显示蓝色 $("a").hover( function(event){ $(this).css("color", "red"); }, function(event){ $(this).css("color", "blue"); } ); // 为所有button元素的hover事件绑定处理函数 // 鼠标移入、移出链接时,都去掉下划线 $("a").hover( function(event){ $(this).css("textDecoration", "none");
} );
$(document).ready(function()
{
var isShow=false;
$("#hidden_menu").hide();
$("#categort").mouseover(function(){
$("#hidden_menu").show();
});
$("#hidden_menu").mouseover(function(){
isShow=true;
$(this).show();
});
$("#hidden_menu").mouseout(function(){
if(isShow)
{
$(this).hide();
isShow=false;
}
});
})
script
>
<
div
id
=
"categort"
><
a
href
=
"#"
>category
a
>
div
>
<
div
id
=
"hidden_menu"
>
<
div
class
=
"round_corner_left"
>
div
>
<
div
class
=
"round_corner_reeat"
><
a
>
这里历遍数据库得到的各种分类名称<
/
a
>
div
>
<
div
class
=
"round_corner_right"
>
div
>
div
>
=======================================================
$(function(){
Hover("tableTest")//调用方法
})
var Hover=function(id){
$("#"+id).find("tr").hover(function(){
$(this).css({"backgruond-color","pink"});//当鼠标移进的时候触发事件A
},function(){
$(this).css({"backgruond-color",""});//当鼠标移出的时候触发事件B
})
}