您现在的位置是:课程教程文章

js中Date()方法如何使用

2023-12-13 23:55课程教程文章 人已围观

1、获取当前时间必须实例化,Date对象会自动将当前日期和时间保存为初始值。

varnow=newDate();
console.log(now);

2、Date构造函数的参数,如果括号中有时间,返回参数中的时间。

letendTime='2020-01-01';
letendTime=formatDate(newDate(newDate(endTime).setDate(newDate(endTime).getDate()+1)));
console.log(endTime);//2020-01-02


//返回格式化日期yyyy-MM-dd
functionformatDate(date){
returnPrefixInteger(date.getFullYear(),4)+"-"+PrefixInteger(parseInt(date.getMonth()+1),2)+"-"+PrefixInteger(date.getDate(),2);
}
//数字转字符串,前方自动补零
functionPrefixInteger(num,n){
return(Array(n).join(0)+num).slice(-n);
}

以上就是js中Date()方法的使用,希望对大家有所帮助。更多js学习指路:js教程

推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。

课程教程:js中Date()方法如何使用

上一篇:如何查看python解释器的路径

下一篇:没有了

站点信息

  • 文章统计篇文章