当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。