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

Sommario

Restituisce il nome dell'evento (case-insensitive).

Sintassi

stringa = event.type

Esempio

<html>
<head>

<title>esempio su event.type</title>

<script type="text/javascript">
var eventoCorrente = null;

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

</script>
</head>

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

<p>Premi un tasto della tastiera o del mouse per visualizzare il nome dell'evento.</p>
<p>Tipo evento: <span id="Etype">-</span></p>

</body>
</html>

Note

Il è un nome XML valido.

Specifiche

type

Tag del documento e collaboratori

 Hanno collaborato alla realizzazione di questa pagina: teoli, khalid32, Federico
 Ultima modifica di: khalid32,