Résumé
Retourne le temps (en millisecondes) à partir duquel l'événement a été créée.
Syntaxe
event.timeStamp
Exemples
var number = event.timeStamp;
L'exemple suivant est plus complet:
<html> <head> <title>timeStamp example</title> <script type="text/javascript"> function getTime(event) { document.getElementById("time").firstChild.nodeValue = event.timeStamp; } </script> </head> <body onkeypress="getTime(event)"> <p>Press any key to get the current timestamp for the onkeypress event.</p> <p>timeStamp: <span id="time">-</span></p> </body> </html>
Notes
Cette propriété fonctionne seulement si le système d'événements le supporte pour cet événement.
Spécifications
Spécification | Statut | Commentaire |
---|---|---|
DOM La définition de 'Event.timeStamp' dans cette spécification. |
Standard évolutif | |
DOM4 La définition de 'Event.timeStamp' dans cette spécification. |
Recommendation | |
Document Object Model (DOM) Level 2 Events Specification La définition de 'Event.timeStamp' dans cette spécification. |
Recommendation | Première définition |
Compatibilités navigateur
Caractéristique | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Support basique | 49.0[1] | ? | ? | ? | ? |
Caractéristique | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Support basique | Pas de support | 49.0[1] | ? | ? | ? | ? | ? | 49.0 |
[1] A partir de Chrome 49, il retourne un temps monotone haute résolution au lieu d'un epoch time.