要素にマウスカーソルが乗ったとき及び要素からマウスカーソルが降りたときのイベントハンドラを指定する。
jQueryObject.hover(handlerIn, handlerOut)
jQueryObject.hover(handlerInOut)
以下に示す引数をjQueryオブジェクトのhoverメソッドに指定することができる。
<div id="d1">
ここにマウスカーソルを出し入れしてください。
</div>
<script>
let e = jQuery('#d1')
e.hover(function(){
e.text('mouseover')
}, function(){
e.text('mouseout')
})
</script>
OpenJS Foundation (2022) .hover() | jQuery API Documentation