例
更改背景顏色<p>元素,當鼠標指針懸停在:
$("p").hover(function(){
$(this).css("background-color", "yellow");
}, function(){
$(this).css("background-color", "pink");
});
試一試» 定義和用法
該hover()方法指定兩個功能,當鼠標指針懸停在選定的元素來運行。
此方法觸發這兩個mouseenter()和mouseleave()事件。
注意:如果僅指定一個功能,它會為兩個運行mouseenter和mouseleave事件。
句法
$(selector).hover(inFunction,outFunction)
參數 | 描述 |
---|---|
inFunction | 需要。 指定功能,當運行mouseenter事件發生 |
outFunction | 可選的。 指定功能,當運行mouseleave事件發生 |