标签:style class date() span new div ace color code
var str = "2010-08-01"; // 转换日期格式 str = str.replace(/-/g, ‘/‘); // "2010/08/01"; // 创建日期对象 var date = new Date(str); // 加一天 date.setDate(date.getDate() + 1);
标签:style class date() span new div ace color code
原文地址:https://www.cnblogs.com/zhangwei99com/p/9035045.html