html 5日期格式[重复]

Posted

技术标签:

【中文标题】html 5日期格式[重复]【英文标题】:html 5 date format [duplicate] 【发布时间】:2012-09-08 01:03:56 【问题描述】:

可能重复:Is there any way to change input type=“date” format?

我们能否更改 html 5 中输入的日期格式?目前,我的网站显示 MM-DD-YYYY,但我希望它显示 DD-MM-YYYY。

【问题讨论】:

【参考方案1】:

我想是的,在 HTML 中没有 DD-MM-YYYY 格式的语法。请参阅此page。对您有所帮助。或者您可以在 javascript 中尝试:

<script language="JavaScript">
<!-- Begin
// Get today's current date.
var now = new Date();
// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
// Calculate four digit year.
function fourdigits(number)
    return (number < 1000) ? number + 1900 : number;
                                
// Join it all together
today = days[now.getDay()] + ", " +
        months[now.getMonth()] + " " +
        date + ", " +
        (fourdigits(now.getYear())) ;
// Print out the data.
document.write(today);
// End -->
</script>

【讨论】:

以上是关于html 5日期格式[重复]的主要内容,如果未能解决你的问题,请参考以下文章

javascript输入日期html格式[重复]

如何使用python将不同格式的日期转换为一种格式[重复]

PHP如何获取日期时间格式“5月19日星期二下午1:24”的小时和分钟[重复]

如何将 HTML 中的日期时间格式更改为 dd/mm/yyyy [重复]

django中的时间格式问题[重复]

T在json中格式化日期[重复]