示例代码:
var postdate = entry.published.$t;
var month1 = [1,2,3,4,5,6,7,8,9,10,11,12];
var month2 = ["Jan","Feb","Mar","Apr","Mey","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
var d = postdate.split("-")[2].substring(0,2);
var m = postdate.split("-")[1];
var y = postdate.split("-")[0];
for(var u2=0; u2<month1.length; u2++){ if(parseInt(m)==month1[u2]){ m=month2[u2]; break;}}
var daystr = (showPostDate) ? '' + m + ' ' + d + ', ' + y + '' : "";
var item = '' + daystr + '';
发布日期的最终产品= 2013年2月17日
我想约会格式= 2013年2月17日星期六
var daynames = ["Monday","Tuesday", ... "Sunday"];
答案 0 :(得分:0)
如果您需要格式化。您可以使用发布日期来创建Date对象。像这样:
var d = new Date(2013,2,17);
并使用d值创建自己的日期:(https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date)。请参阅链接底部的示例。
使用以下内容获取日期并从数组中检索:
getDay
Returns the day of the week (0-6) for the specified date according to local time.
像这样:
var day = [“Monday”,“Tuesday”,....];
的console.log(天[d.getDay()]);