HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLonblurイベント属性


HTML onblur属性は、HTML要素がHTMLドキュメントでフォーカスを失ったときに使用されます。

構文

以下は構文です-

<tagname onblur=”script”></tagname>

HTMLonblurイベント属性の例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #FBAB7E;
      background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
      text-align: center;
      padding: 20px;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
   .show {
      font-size: 1.2rem;
   }
</style>
</head>
<body>
<h1>HTML onblur Event Attribute Demo</h1>
<button onblur="blurFn()" class="btn" onclick='clickFn()'>Click me</button>
<div class="show"></div>
<script>
   function blurFn() {
      var msg = document.querySelector('.show');
      msg.innerHTML = "";
      msg.innerHTML = "Now you loses focus from me";
   }
   function clickFn() {
      var msg = document.querySelector('.show');
      msg.innerHTML = "";
      msg.innerHTML = "Hey! you clicked me";
   }
</script>
</body>
</html>

出力

HTMLonblurイベント属性

クリックしてください」をクリックします 」ボタンをクリックしてテキストを表示します。

HTMLonblurイベント属性

次に、別の場所をクリックすると、ボタンからフォーカスが失われます。

HTMLonblurイベント属性


  1. HTMLondragenterイベント属性

    HTML ondragenterイベント属性は、ドラッグ可能な要素またはテキストがHTMLドキュメントの有効なドロップターゲットに入るとトリガーされます。 構文 以下は構文です- <tagname ondragenter=”script”></tagname> 例 HTMLondragenterイベント属性の例を見てみましょう- <!DOCTYPE html> <html> <head> <style>    body {       color

  2. HTMLondragendイベント属性

    HTML ondragendイベント属性は、ユーザーがHTMLドキュメント内のHTML要素の要素またはテキストのドラッグを終了したときにトリガーされます。 構文 以下は構文です- <tagname ondragend=”script”></tagname> HTMLオンドラッグイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <head> <style>    body {       color: #000;