gpt4 book ai didi

jquery - 在 jQuery 中使用 $.now() 时出现错误的时间戳

转载 作者:行者123 更新时间:2023-12-01 06:27:05 26 4
gpt4 key购买 nike

使用此方法时,jquery 获取的是 13 位时间戳,而不是 10 位时间戳:

var timestamp = $.now();
alert(timestamp);

结果是 1382518196714,这是 13 位数字,而不是 10 位数字。

如何使用 jquery 获得正确的时间戳?

最佳答案

JavaScript 时间戳显示自纪元以来的毫秒而不是秒。

因此:

1382518196714 milliseconds

d = new Date( 1382518196714 );

会给出:

Wed Oct 23 2013 08:49:56 GMT+0000

关于jquery - 在 jQuery 中使用 $.now() 时出现错误的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19537235/

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