最新的Web開發教程
 

jQuery hover() Method

<jQuery的事件方法

更改背景顏色<p>元素,當鼠標指針懸停在:

$("p").hover(function(){
    $(this).css("background-color", "yellow");
    }, function(){
    $(this).css("background-color", "pink");
});
試一試»

定義和用法

hover()方法指定兩個功能,當鼠標指針懸停在選定的元素來運行。

此方法觸發這兩個mouseenter()mouseleave()事件。

注意:如果僅指定一個功能,它會為兩個運行mouseentermouseleave事件。


句法

$(selector).hover(inFunction,outFunction)

參數 描述
inFunction 需要。 指定功能,當運行mouseenter事件發生
outFunction 可選的。 指定功能,當運行mouseleave事件發生

<jQuery的事件方法