gpt4 book ai didi

javascript - 如何在我的代码中获取时间戳

转载 作者:行者123 更新时间:2023-12-02 14:31:21 25 4
gpt4 key购买 nike

我希望在页面加载时获取时间戳,但我不能。

这是我的代码:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p id = "x">time</p>
<script src="jquery/jquery1.12.js"></script>
<script>
$(document).ready(function(event){
$("#x").text(event.timeStamp);
})
</script>
</body>
</html>

最佳答案

您可以使用Date反对做这项工作。 now() 方法返回时间戳(以毫秒为单位)。当然,javascript 返回带有客户端时间的时间戳。

$(document).ready(function(event){
var timeStamp = Math.floor(Date.now() / 1000);
$("div").text(timeStamp);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div></div>

关于javascript - 如何在我的代码中获取时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37792120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com