标签:js常识
function toDate(str){ var sd=str.split("-"); return new Date(sd[0],sd[1],sd[2]); }
直接调取toDate
本文出自 “kangjunfei” 博客,谢绝转载!
js变化时间大小
原文地址:http://kangjunfei.blog.51cto.com/11556647/1937335