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

window.onmouseup

概要

window 上の mouseup イベントに対応するイベントハンドラです。

構文

window.onmouseup = funcRef;
  • funcRef : 関数への参照、または関数式

function doFunc() {
  alert("こんにちは!");
}

window.onmouseup = doFunc;
window.onmouseup = function() {
  alert("こんばんは!");
};
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>onmouseup のテスト</title>

<script>
window.onmouseup = mouseup;

function mouseup() {
  alert("mouseup イベントを検出!");
}
</script>

</head>
<body>
<p>ページ上をマウスのボタンでクリックし、数秒押し続け、ボタンを放します。
マウスのボタンを放すことで、 mouseup イベントが発生します。</p>
</body>
</html>

注記

mouseup イベントは、ドキュメント内のどこででも、ユーザがマウスの左ボタンを放すことによって発生します。

仕様

標準仕様書には含まれていません。

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

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