javascript – 在jquery中转换日期格式

前端之家收集整理的这篇文章主要介绍了javascript – 在jquery中转换日期格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要日期以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);
原文链接:https://www.f2er.com/jquery/156002.html

猜你在找的jQuery相关文章