我正在尝试将字符串值转换为 JavaScript 日期格式,但我似乎没有找到一种简单的方法来做到这一点,而无需使用诸如 datejs 之类的其他库
var dateString = "20131120";
var date = new Date(dateString);
console.log(date);
// I need to add an additional day to the original string
var newDate = date.getFullYear() + '-' + (date.getMonth()+1) + '-' + (date.getDate()+1);
console.log(newDate);
非常感谢任何提示。