今天在写习题时,遇到些小问题,在这里把答案分享给大家,希望能帮助到大家! 一.把字符串转换成日期类型 var str = "1997-3-12"; var d = new Date(str); console.log(d); console.log(d.getTime()); 控制台输出: console.log(d); 显示为: Wed Mar 12 1997 00:00:00 GMT+0800 (香港标准时间) consolle.log(d.getTime()); 把时间转换成毫秒
1.toLocaleDateString (根据本地时间把Date 对象的日期部分转换为字符串): var time = new Date(); var formatTime = time.toLocaleDateString(); //print 2017/4/18 2.将时间指定为 年-月-日 格式,例:2017-1-1 var date = new Date('Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)'); formatTime=date.get
将字符串形式的日期转换成日期对象 var strTime="2011-04-16"; //字符串日期格式 var date= new Date(Date.parse(strTime.replace(/-/g, "/"))); //转换成Data(); var month=date.getMonth()+1; //获取当前月份 -----------------------------------------------------------