diff options
Diffstat (limited to 'files/ja/web/api/mouseevent/button/index.html')
-rw-r--r-- | files/ja/web/api/mouseevent/button/index.html | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/files/ja/web/api/mouseevent/button/index.html b/files/ja/web/api/mouseevent/button/index.html new file mode 100644 index 0000000000..71aab88fe7 --- /dev/null +++ b/files/ja/web/api/mouseevent/button/index.html @@ -0,0 +1,110 @@ +--- +title: MouseEvent.button +slug: Web/API/MouseEvent/button +tags: + - API + - DOM + - DOM Events + - MouseEvent + - Property + - Read-only + - Reference +translation_of: Web/API/MouseEvent/button +--- +<p>{{APIRef("DOM Events")}}</p> + +<p>読み取り専用プロパティ <strong><code>MouseEvent.button</code></strong> はイベントのトリガーとなったのがどのボタンが押されたのかを表します。</p> + +<p>このプロパティは、1つまたは複数のボタンを押したり離したりすることによって発生したイベント中にどのボタンが押されたかを示すことのみを保証します。したがって、 {{event("mouseenter")}}, {{event("mouseleave")}}, {{event("mouseover")}}, {{event("mouseout")}} ,{{event("mousemove")}} のようなイベントに対しては確かではありません。</p> + +<p>ユーザーはポインティングデバイスの設定を変更できるため、例えばイベントのボタンプロパティがゼロだった場合、必ずしも物理的な左ボタンによるものとは限りません。ただし、そのような場合でも標準設定における左ボタンと同じ動作をするべきです。</p> + +<div class="note"> +<p><strong>Note:</strong> 全てのマウスイベントで扱える、複数のボタンを同時に押下されていることを表せる {{domxref("MouseEvent.buttons")}} プロパティと混同しないように注意してください。</p> +</div> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox">var <em>buttonPressed</em> = <em>instanceOfMouseEvent</em>.button +</pre> + +<h3 id="戻り値">戻り値</h3> + +<p>該当するボタンに対応する番号:</p> + +<ul> + <li><code>0</code>: メインボタンが押された。通常は左ボタンか未初期化状態。</li> + <li><code>1</code>: 補助ボタンが押された。通常はホイールボタンまたは中央のボタンが押された場合。</li> + <li><code>2</code>: 第二ボタンが押された。通常は右ボタン。</li> + <li><code>3</code>: 第四ボタン。一般的にブラウザーの戻るボタン。</li> + <li><code>4</code>: 第五ボタン。一般的にブラウザーの進むボタン。</li> +</ul> + +<p>上記のように、ボタンは標準の「左から右へ」のレイアウトとは異なるように構成されてもよいく、左利き用に設定されたマウスでは、ボタンの動作が逆になることがあります。いくつかのポインティングデバイスは1つのボタンしか持たず、キーボードまたは他の入力機構を使用して主、副、補助などを示します。他のポインティングデバイスは多くのボタンを異なる機能およびボタン値にマッピングすることができます。</p> + +<h2 id="例">例</h2> + +<p> </p> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><code><button id="button" oncontextmenu="event.preventDefault();">Click here with your mouse...</button> +<p id="log"></p></code> +</pre> + +<h3 id="JavaScript">JavaScript</h3> + +<pre class="brush: js"><code>let button = document.querySelector('#button'); +let log = document.querySelector('#log'); +button.addEventListener('mouseup', logMouseButton); + +function logMouseButton(e) { + if (typeof e === 'object') { + switch (e.button) { + case 0: + log.textContent = 'Left button clicked.'; + break; + case 1: + log.textContent = 'Middle button clicked.'; + break; + case 2: + log.textContent = 'Right button clicked.'; + break; + default: + log.textContent = `Unknown button code: ${btnCode}`; + } + } +}</code> +</pre> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('DOM3 Events','#widl-MouseEvent-button','MouseEvent.button')}}</td> + <td>{{Spec2('DOM3 Events')}}</td> + <td>Compared to {{SpecName('DOM2 Events')}}, the return value can be negative.</td> + </tr> + <tr> + <td>{{SpecName('DOM2 Events','#Events-MouseEvent','MouseEvent.button')}}</td> + <td>{{Spec2('DOM2 Events')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2> + +<div id="compat-desktop">{{Compat("api.MouseEvent.button")}}</div> + +<h2 id="関連情報">関連情報</h2> + +<ul> + <li>{{domxref('"MouseEvent"')}}</li> +</ul> |