「jQuery」.mouseleaveでマウスカーソルが離れるサンプル

2022年2月18日

環境
jquery 3.6.0

書式
$('セレクタ’).mouseleave(function(){処理コード}
.mouseleaveを使用してマウスカーソルが離れたイベントを取得します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function(){
  //#cftにmouseleaveイベントを使用する
  $('#cft').mouseleave(function(){
    alert('マウスカーソルが離れました');
  });
});
</script>
</head>
<body>
  <div id="cft">ここにマウスカーソルを当ててください。</div>
</body>
</html>

結果
対象要素divにマウスカーソルが要素から外れた時にalertメッセージを出力します。

jQuery

Posted by arkgame