我正在使用以下代码在我的网页上显示上次更新日期。
问题是格式是MM / DD / YYYY,但我需要DD / MM / YYYY才能在那。

在HEAD中:

<script type="text/javascript">
onload = function()
{
document.getElementById("lastModified").innerHTML = "Last updated :  " +
document.lastModified.split(" ")[0];
}
</script>


在体内

<span id="lastModified"></span>

最佳答案

您可以使用toLocaleDateString()设置日期格式



onload = function() {
  document.getElementById("lastModified").innerHTML = "Last updated :  " +
    new Date(document.lastModified).toLocaleDateString('in');
}

<span id="lastModified"></span>

关于javascript - 在网页中更改日期格式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53689832/

10-09 06:13