我需要日期以2014-11-04格式显示为“yy mm dd”
目前,我的剧本仍然向我展示
2014年11月4日星期二00:00:00 GMT 0200(埃及标准时间)
$(document).ready(function() { var userDate = '04.11.2014'; from = userDate.split("."); f = new Date(from[2],from[1] - 1,from[0]); console.log(f); });
解决方法
您可以使用日期对象的方法来构造它
var date = new Date(userDate),yr = date.getFullYear(),month = date.getMonth() < 10 ? '0' + date.getMonth() : date.getMonth(),day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(),newDate = yr + '-' + month + '-' + day; console.log(newDate);