Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.onblur

概要

onblur プロパティは、ウィンドウ上の blur イベントのイベントハンドラを設定するために使うことができます。blur イベントは、ウィンドウからフォーカスが外れたときに発生します。

構文

window.onblur = funcRef;
  • funcRef : 実行される関数への参照

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>onblur test</title>

<script>
window.onblur = blurText;

function blurText() {
  alert("blur event detected!");
  // 無限ループを防ぐためにイベントを削除してください!
  window.onblur = '';
}
</script>

</head>
<body>
<p>別のウィンドウをクリックしてください。
そうすると、このブラウザウィンドウで blur イベントが発生します。
</p>
</body>
</html>

仕様

DOM Level 0。どの標準にも属しません。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: teoli, khalid32, ethertank, Potappo
 最終更新者: khalid32,