我正在运行gCalFlow以获取每日特价列表(cactustaqueria.com) 它有一个日期格式选项,返回ISO样式格式。我想返回更多人类可读日期,包括星期几。所以我现在返回以下内容: 2013年8月17日 - 2013年8月19日 我想读它
tues-wed(2013年8月17日至19日)(或类似的东西。关键是一周中的一天和一天中的语言而不是数字)。
调用该函数的代码如下所示:
<script type="text/javascript">
$('#cactuscal').gCalFlow({
calid: 'myid@gmail.com',
link_item_title: false,
maxitem: 6,
daterange_formatter: function(sd, ed, allday_p) { return (sd.getMonth()+1) + "/" + sd.getDate() + "/" + sd.getYear().toString().substr(-2)+ " – " +(ed.getMonth()+1) + "/" + ed.getDate() + "/" + ed.getYear().toString().substr(-2) }
});
</script>
相反,我认为如果它抓住ISO我可以抓住它并使用Date()方法?只是不知道如何去做。我会重写js文件选项吗?或者在页面上的这个脚本中直接做某事?
这是项目的github文档http://sugi.github.io/jquery-gcal-flow/
的链接