我是靠谱客的博主 饱满树叶,这篇文章主要介绍微信小程序实例:实现系统时间、时间戳时间以及时间戳加减的获取代码,现在分享给大家,希望可以做个参考。

本篇文章给大家带来的内容是关于微信小程序实例:实现系统时间、时间戳时间以及时间戳加减的获取代码 ,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//获取当前时间戳 var timestamp = Date.parse(new Date()); timestamp = timestamp / 1000; console.log("当前时间戳为:" + timestamp); //获取当前时间 var n = timestamp * 1000; var date = new Date(n); //年 var Y = date.getFullYear(); //月 var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1); //日 var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(); //时 var h = date.getHours(); //分 var m = date.getMinutes(); //秒 var s = date.getSeconds(); console.log("当前时间:" +Y+M+D+h+":"+m+":"+s); //转换为时间格式字符串 console.log(date.toDateString()); console.log(date.toGMTString()); console.log(date.toISOString()); console.log(date.toJSON()); console.log(date.toLocaleDateString()); console.log(date.toLocaleString()); console.log(date.toLocaleTimeString()); console.log(date.toString()); console.log(date.toTimeString()); console.log(date.toUTCString());
登录后复制
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//时间、时间戳加减 以加一天举例,聪明的你肯定触类旁通 //加一天的时间戳: var tomorrow_timetamp = timestamp + 24 * 60 * 60; //加一天的时间: var n_to = tomorrow_timetamp * 1000; var tomorrow_date = new Date(n_to); //加一天后的年份 var Y_tomorrow = tomorrow_date.getFullYear(); //加一天后的月份 var M_tomorrow = (tomorrow_date.getMonth() + 1 < 10 ? '0' + (tomorrow_date.getMonth() + 1) : tomorrow_date.getMonth() + 1); //加一天后的日期 var D_tomorrow = tomorrow_date.getDate() < 10 ? '0' + tomorrow_date.getDate() : tomorrow_date.getDate(); //加一天后的时刻 var h_tomorrow = tomorrow_date.getHours(); //加一天后的分钟 var m_tomorrow = tomorrow_date.getMinutes(); //加一天后的秒数 var s_tomorrow = tomorrow_date.getSeconds();
登录后复制

相关推荐:

小程序:防止点击遮罩层后遮罩层下面也反应的解决方法

微信小程序实例:分享给一个人还是分享到群的判断代码

以上就是微信小程序实例:实现系统时间、时间戳时间以及时间戳加减的获取代码的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是饱满树叶最近收集整理的关于微信小程序实例:实现系统时间、时间戳时间以及时间戳加减的获取代码的全部内容,更多相关微信小程序实例:实现系统时间、时间戳时间以及时间戳加减内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(77)

评论列表共有 0 条评论

立即
投稿
返回
顶部