分类目录: html5
js通过parseInt巧妙将日期补零
Post date:
Author: cyy
Number of comments: no comments
js通过parseInt巧妙将日期补零
直接上代码:
var now = new Date();
fillzero(now);
function fillzero(d) {
return (parseInt(d.getFullYear()) * 10000) + ((parseInt(d.getMonth() + 1)) * 100) + parseInt(d.getDate());
}
运行结果:
拆解:
- 年 * 10000 = 20210000
- 1月 * 100 = 100,10月*100 = 1000
- 日 = 25
- 年月日加起来就是拼好的补零了。