javascript怎么实现当天日期
发布网友
发布时间:2022-04-30 16:27
我来回答
共2个回答
热心网友
时间:2022-04-22 22:43
var now=new Date(); // now就是现在的时间
你可以根据js的Date的api,来进行取值
getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。
getMonth() 从 Date 对象返回月份 (0 ~ 11)。
getFullYear() 从 Date 对象以四位数字返回年份。
getYear() 请使用 getFullYear() 方法代替。
getHours() 返回 Date 对象的小时 (0 ~ 23)。
getMinutes() 返回 Date 对象的分钟 (0 ~ 59)。
getSeconds() 返回 Date 对象的秒数 (0 ~ 59)。
还有,没有什么简便方法,你只能根据这些API来取自己想要的
热心网友
时间:2022-04-23 00:01
var dt=new Date(); // dt就是当前日期