jquery中hover方法規定當滑鼠指標停留在被選元素上時要執行的兩個函數,其使用語法為「$(selector).hover(inFunction,outFunction)」。
本文操作環境:windows7系統、jquery3.2.1版、DELL G3電腦
jquery中hover方法作用是什麼?
jQuery hover() 方法:
#hover() 方法規定當滑鼠指標停留在被選元素上時要執行的兩個函數。
方法觸發 mouseenter 和 mouseleave 事件。
注意: 如果只指定一個函數,則 mouseenter 和 mouseleave 都會執行它。
語法
$(selector).hover(inFunction,outFunction)
呼叫:
$( selector ).hover( handlerIn, handlerOut )
等同以下方式:
$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );
注意:如果只規定了一個函數,則它將在mouseenter 和mouseleave 事件上執行。
呼叫:
$(selector).hover(handlerInOut)
等同於:
$( selector ).on( "mouseenter mouseleave", handlerInOut );
參數
inFunction 必要。規定 mouseenter 事件發生時運行的函數。
outFunction 可選。規定 mouseleave 事件發生時運行的函數。
推薦學習:《jquery影片教學》
以上是jquery中hover方法作用是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!