js如何获取当前时间代码,下面web建站小编给大家详细介绍一下具体代码!
具体代码如下:
function currentDate(type, isno) {
var date = new Date();
var year = singular(date.getFullYear());
var month = singular(date.getMonth() + 1);
var strDate = singular(date.getDate());
var hours = singular(date.getHours());
var minutes = singular(date.getMinutes());
var seconds = singular(date.getSeconds());
if (type) {
if (isno) {
return year + "年" + month + "月" + strDate + "日 " + hours + "时" + minutes + "分" + seconds + "秒";
} else {
return year + "年" + month + "月" + strDate + "日";
}
} else {
if (isno) {
return year + "-" + month + "-" + strDate + " " + hours + ":" + minutes + ":" + seconds;
} else {
return year + "-" + month + "-" + strDate;
}
}
}
单数补位
function singular(num) {
if (num < 10) {
num = "0" + num;
}
return num;
}
方法调用
console.log('输出结果:', currentDate(true, true))
//输出结果:2023年01月11日 12时59分55秒
console.log('输出结果:', currentDate(true, false))
//输出结果:2023年01月11日
console.log('输出结果:', currentDate(false, true))
//输出结果:2023-01-11 13:02:40
console.log('输出结果:', currentDate(false, false))
//输出结果:2023-01-11
上面是“js封装获取当前时间代码”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3083.html
workflows工作流
一张皮卡丘向观众眨眼的逼真照片ComfyUI工作流
一群可爱的小老鼠ComfyUI工作流
乒乓卡通3d人物
小孩手握锤子顽皮搞笑卡通3d形象
未来椅子3D产品ComfyUI工作流
一只穿着黑色蝴蝶结西装可爱橙色小猫
一个时间旅行女人的神秘剪影ComfyUI工作流
森林里一只空灵的犀鸟ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

jquery鼠标滑过图片边框特效(jquery.focus-follow插件)
在线生成金属文字
用canvas实现画板涂鸦效果
一个包含老黄历、佛历、道历、星宿等数据的日历网站
js实现table表格动态新增行和列表
利用html5+css3实现滚雪球效果(附代码)
css3绘制一个会动的大嘴鸟
css3搭积木叠加图形










