有没有办法链接
javascript日期功能?
例如,我想要这样的东西:
var d = new Date().setMinutes(0).setSeconds(0).setMilliseconds(0);
这个语法会出错:
(new Date).setMinutes(0).setSeconds is not a function
我知道我可以做到这一点:
var d = new Date(); d.setMinutes(0); d.setSeconds(0); d.setMilliseconds(0);
但这感觉很冗长而且麻烦.有没有更好的办法?