How to convert a DateTime value to dd/mm/yyyy in jQuery?

前端 未结 3 1917
陌清茗
陌清茗 2021-01-16 04:57

I am having a datetime object whose value is: /Date(1475173800000)/ in jQuery. I want it to be displayed in dd/mm/yyyy in jQuery. Is there

相关标签:
3条回答
  • 2021-01-16 05:33

    You can use new Date() with parameter being universal time variable, Date.prototype.toJSON(), String.prototype.slice(), String.prototype.split() with parameter "-", Array.prototype.reverse(), Array.prototype.join() with parameter "/"

    var time = 1475173800000;
        
    var date = new Date(time).toJSON().slice(0, 10).split("-").reverse().join("/");
    
    console.log(date);

    0 讨论(0)
  • 2021-01-16 05:34

    Try jQuery dateFormat for easy and flexible date formatting. You simply use it like this:

    var timestamp = /\/Date\((.*)\)\//;
    var myDate = new Date(parseInt(timestamp));
    $.format.date(myDate.getTime(), "dd/mm/yyyy"));
    
    0 讨论(0)
  • 2021-01-16 05:37

    One of the easiest things to use for date is datejs (http://www.datejs.com/) You can use the toString method to provide the format in which you want to get the date. There are much more useful components for date manipulation in this library. Do check it out.

    0 讨论(0)
提交回复
热议问题