Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个展览时间表,我的数据格式为“2013-12-15T07:39:19.000-04:00”,我想控制日期的显示方式。现在,它默认只显示日期和月份,但我希望它也显示年份。
我的猜测是使用 .js 代码进行展览? 如果您想将日期格式化为您想要的字符串,Javascript 可能会很棘手,您可能必须自己解析。像这样的东西:
d = 新日期(“2013-12-15T07:39:19.000-04:00”) date_str = d.getDate() +"-" + d.getMonth() + "-" + d.getFullYear() alert(date_str) //结果取决于本地计算机时区
考虑添加特定于日期格式的 js 库,例如momment.js(虽然我没有尝试过)