在jquery中转换日期格式

时间:2014-10-24 14:17:18

标签: javascript jquery date format

我需要以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); 
});

3 个答案:

答案 0 :(得分:14)

您可以使用日期对象的方法

来构造它
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);

答案 1 :(得分:5)

您可以尝试以下方法:

   $(document).ready(function() {
        var userDate = '04.11.2014';
        var from = userDate.split(".");
        var f = new Date(from[2], from[1], from[0]);
        var date_string = f.getFullYear() + " " + f.getMonth() + " " + f.getDate();
        console.log(date_string);
    });

或者我会查看 Moment.js 处理日期会更容易:

$(document).ready(function() {
    var userDate = '04.11.2014';
    var date_string = moment(userDate, "DD.MM.YYYY").format("YYYY-MM-DD");
    $("#results").html(date_string);
});

MOMENT.JS DEMO:FIDDLE

答案 2 :(得分:0)

我想你可能会在这里找到答案: Converting string to date in js

替换“。”用“ - ”来验证日期。

编辑:这是在javascript中完成的,Jquery没有日期的utillity函数