后端返回时间格式:2019-06-30,前端需要获取这天结束时间;
new Date('2019-06-30 23:59:59') // not working
<!– more –>
这里借助 momentjs 处理了一下
var time = "2019-06-30" + " 23:59:59";
time = moment(time, 'YYYY-MM-DD hh:mm:ss').format('YYYY/MM/DD hh:mm:ss');
new Date(time); // working
iOS new Date(string) 年月日必须以 /
分隔不能以 -