From fe976c566c7f9d06cefc8874feb9f406d4992ac4 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 20 Jul 2021 00:26:44 +0900 Subject: conflicting/Web/API/GlobalEventHandlers/onmouseup を削除 (#1503) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 正規版の方が新しいので、conflicting版を削除 --- .../api/globaleventhandlers/onmouseup/index.html | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html (limited to 'files/ja/conflicting') diff --git a/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html b/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html deleted file mode 100644 index 6424230eb8..0000000000 --- a/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: window.onmouseup -slug: conflicting/Web/API/GlobalEventHandlers/onmouseup -tags: - - DOM - - Gecko - - Gecko DOM Reference - - Window -translation_of: Web/API/GlobalEventHandlers/onmouseup -translation_of_original: Web/API/Window/onmouseup -original_slug: Web/API/Window/onmouseup ---- -
- {{ApiRef}}
-

概要

-

{{domxref("window")}} 上の mouseup イベントに対応するイベントハンドラです。

-

構文

-
window.onmouseup = 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 イベントは、ドキュメント内のどこででも、ユーザがマウスの左ボタンを放すことによって発生します。

-

仕様

-

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

-- cgit v1.2.3-54-g00ecf