How do I format a Microsoft JSON date?

后端 未结 30 3175
伪装坚强ぢ
伪装坚强ぢ 2020-11-21 04:48

I\'m taking my first crack at Ajax with jQuery. I\'m getting my data onto my page, but I\'m having some trouble with the JSON data that is returned for Date data types. Basi

30条回答
  •  心在旅途
    2020-11-21 05:07

    Using the jQuery UI datepicker - really only makes sense if you're already including jQuery UI:

    $.datepicker.formatDate('MM d, yy', new Date(parseInt('/Date(1224043200000)/'.substr(6)))); 
    

    output:

    October 15, 2008

提交回复
热议问题