「jQuery」.focusoutでフォーカスが外れるサンプル

2022年2月18日

環境
jquery 3.6.0

書式
$('セレクタ’).focusout(function(){処理コード}
.focusoutを使用してフォーカスが外れたイベントを取得します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function(){
  //フォーカスアウトイベント
  $('#int').focusout(function(){
    alert('フォーカスアウトイベントが発生しました。');
  });
});
</script>
</head>
<body>
  <textarea type="textarea" rows="3" cols="13" id="int" >1111</textarea>
</body>
</html>

結果
textareaでフォーカスが外れた時alertメッセージを出力します。

jQuery

Posted by arkgame