我必须Date
从 javascript 将当前日期的对象发送到我的后端
我正在做的是
var currentDate = new Date();
var dateString = currentDate.getMonth() + "-"
+ currentDate.getDate() + "-" + currentDate.getFullYear() + " "
+ currentDate.getHours() + ":" + currentDate.getMinutes() + ":"
+ currentDate.getSeconds();
var newDate = new Date(Date.parse(dateString));
但它说无效newDate
日期。
我必须将 3-10-2013 6:10:25 PM 作为日期时间对象发送到后端。