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.timeStamp

概要

イベントが発生した時刻(1970 年 1 月 1 日 00:00:00 からの経過ミリ秒)を返します。

構文

event.timeStamp

var number = event.timeStamp;

完全な例を以下に示します。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>event.timeStamp の使用例</title>
<script>
function getTime(event) {
  document.getElementById("time").firstChild.nodeValue = event.timeStamp;
}
</script>
</head>

<body onkeypress="getTime(event)">

<p>何れかのキーを押下すると、onkeypress イベントのタイムスタンプを取得して表示します。</p>
<p>タイムスタンプ: <span id="time">-</span></p>

</body>
</html>

注記

このプロパティはイベントシステムがイベントをサポートしている場合にのみ機能します。

仕様書

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

タグ: 
 このページの貢献者: fscholz, khalid32, ethertank
 最終更新者: khalid32,