JavasScript打印年月日时间代码
就是Date的API,直接上代码啦。
//打印中文的日期
function printChineseDateTime()
{
var now=new Date();
var str = now.getFullYear()+"年"
+(now.getMonth()+1)+"月"
+now.getDate()+"日"
+now.getHours()+"时"
+now.getMinutes()+"分"
+now.getSeconds()+"秒";
return str;
}
//test
console.log(printChineseDateTime());
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/16294782.html