jsavascript
发布时间:2024年01月03日
效果图
当前时间
var now = new Date();
var year = now.getFullYear();
var month = (now.getMonth() +1) <10 ? "0"+(now.getMonth() +1) : (now.getMonth() +1);
var day = now.getDate() <10 ? "0"+now.getDate() : now.getDate()
var hour = now.getHours() <10 ? "0"+now.getHours() : now.getHours()
var minute = now.getMinutes() <10 ? "0"+now.getMinutes() : now.getMinutes()
var second = now.getSeconds() <10 ? "0"+now.getSeconds() : now.getSeconds()
// console.log("当前时间",year+"-"+month+"-"+day+" "+ hour+":"+minute+":"+second);
文章来源:https://blog.csdn.net/weixin_43312392/article/details/135357754
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!