當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery event.timeStamp用法及代碼示例


event.timeStamp是jQuery中的一個內置屬性,用於測量瀏覽器創建的事件時間與1970年1月1日之間的時間差(以毫秒為單位)。
用法:

event.timeStamp

參數:它不接受任何參數,因為它是屬性而不是函數。
返回值:它返回自1970年1月1日觸發事件以來的毫秒數。

jQuery代碼顯示event.timeStamp屬性的工作方式:


<html> 
   
<head> 
    <script src="https://code.jquery.com/jquery-1.10.2.js"> 
    </script> 
    <script> 
        <!-- jQuery code to show the working of event.timeStamp property -->
        $(document).ready(function() { 
            $("p").click(function(event) { 
                $("span").text(event.timeStamp); 
            }); 
        }); 
    </script> 
    <style> 
        p { 
            width: 80%; 
            padding: 20px; 
            display: block; 
            border: 2px solid green; 
        } 
    </style> 
</head> 
   
<body> 
    <!-- click on this paragraph -->
    <p>The click event occurred <span style="color:green">unknown</span> 
            milliseconds after January 1, 1970.</p> 
</body> 
   
</html>

輸出:
在點擊該段之前,

點擊該段後,



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | event.timeStamp property with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。