以对象为基准去使用方法, 围绕Date对象 var a = new Date() 返回当前的时间对象,可以使用内置的日期对象的方法 a.getFullYear(), a.getMonth(), a.getDate() 从当前时间得到 年.月.日 手动设置某一个时间 new Date(a.getFullYear(), a.getMonth(), a.getDate(), 0, 0, 0, 0); 后面四个是 时.分.秒.毫秒 设置一个指定日期 var b = new Date().setDate(