JavaScript获取当前时间,返回格式年-月-日 时:分:秒
程序员文章站
2022-07-09 19:48:18
JavaScript获取当前时间:
javascript获取当前时间:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>document</title> </head> <body> <script> //返回时间格式:年-月-日 时:分:秒 function getdatestring(date) { // 获取传入的时间,若没有传值则取当前时间 var datestr = date || new date(); // 获取时间的年月日 var year = datestr.getfullyear().tostring().padstart(4, "0"); var month = (datestr.getmonth() + 1).tostring().padstart(2, "0"); var day = datestr.getdate().tostring().padstart(2, "0"); // 获取时间的时分秒 var hour = datestr.gethours().tostring().padstart(2, "0"); var minute = datestr.getminutes().tostring().padstart(2, "0"); var second = datestr.getseconds().tostring().padstart(2, "0"); //返回时间格式:年-月-日 时:分:秒 return `${year}-${month}-${day} ${hour}:${minute}:${second}`; } console.log(getdatestring()); </script> </body> </html>
转自:https://www.cnblogs.com/lanshanxiao/p/12753091.html
上一篇: nginx反向代理后sring boot获取不到真实IP
下一篇: gin系列-中间件
推荐阅读
-
iOS-获取当前时间的年、月、日、时、分、秒 MaemoOPhoneAppleObjective-C黑莓
-
JavaScript获取当前时间,返回格式年-月-日 时:分:秒
-
js将当前时间格式化为 年-月-日 时:分:秒的实现代码
-
PHP获取指定时间段之间的 年,月,天,时,分,秒,php获取
-
PHP获取指定时间段之间的 年,月,天,时,分,秒,php获取
-
php 怎么获取指定时间段之间的 年,月,天,时,分,秒代码实例
-
PHP获取指定时间段其间的 年,月,天,时,分,秒
-
PHP获取指定时间段其间的 年,月,天,时,分,秒
-
PHP获取指定时间段之间的 年,月,天,时,分,秒,php获取_PHP教程
-
php 怎么获取指定时间段之间的 年,月,天,时,分,秒代码实例