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.

event.type

概要

イベントタイプを含んだ文字列を返します。

EventTarget.addEventListener()EventTarget.removeEventListener() のイベントの属性は大文字小文字を問いません(ケースインセンティブ)。

利用可能なイベントタイプの一覧は、Mozilla event referenceを御覧ください。

シンタックス

event.type

var string = event.type;
<!DOCTYPE html>
<html lang="en">
<head>

<title>type example</title>

<script>
var currEvent = null;

function getEvtType(evt) {
  currEvent = evt.type;
  document.getElementById("Etype").firstChild.nodeValue = currEvent;
}

</script>
</head>

<body
  onkeydown="getEvtType(event)"
  onkeyup="getEvtType(event)"
  onmousedown="getEvtType(event)"
  onmouseup="getEvtType(event)">

<p>Press any key or click the mouse to get the event type.</p>
<p>Event type: <span id="Etype">-</span></p>

</body>
</html>

仕様

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

 このページの貢献者: fscholz, Shunter1112
 最終更新者: Shunter1112,