gpt4 book ai didi

javascript - 如何在html中显示最后更新时间?

转载 作者:行者123 更新时间:2023-11-30 09:12:06 45 4
gpt4 key购买 nike

我想在我的网站上显示上次更新(修改)时间。我怎样才能在html中做到这一点。这是我的脚本

<!DOCTYPE html>
<html>
<body>
This is last updated time

<body onload="myFunction()">
<script>
function myFunction() {
var x = document.lastModified;
document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

最佳答案

您可以使用日期对象,然后使用 ISOString 方法,使用 substr 从字符串中获取时间

function myFunction() {
var x = document.lastModified;
document.getElementById("demo").innerHTML = new Date(document.lastModified).toISOString().substr(11, 8);
}

myFunction()
This is last updated time <span id='demo'></span>

关于javascript - 如何在html中显示最后更新时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57857557/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com