「jQuery入門」focusout()メソッドのサンプル

2021年2月19日

書式
$('セレクター名’).focusout(function(){//処理コード}
使用例

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>focus()とselect()のサンプル</title>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div id="cft">
    <input type="text" value="user002" name="username">
</div>
<script>
 $('#cft').focusout(function() {
    console.log('divがフォーカス外れました');
  });
</script>
</body>
</html>

 

jQuery

Posted by arkgame