如何只显示时间而不是时间和日期?
How to just show the time not the time AND date?
<html>
<p id="time"></p>
<script>
var theDate = new Date(Date.parse(
'06/14/2020 9:41:48 PM UTC'));
document.getElementById("time")
.innerHTML = theDate.toLocaleString();
</script>
</body>
</html>
当我删除此示例中的“2020 年 6 月 14 日”日期时,它告诉我“日期无效”。我只想单独显示时间,没有日期。我该怎么做?
要仅打印时间,请使用 toLocaleTimeString
。
有关 Datefunction 的更多信息,您可以在 Mozilla documentation
找到
那样做
var interval = setInterval(currentTime,1000);
function currentTime(){
var time = new Date();
document.getElementById("time").innerHTML = time.toLocaleTimeString();
}
<p id="time"></p>
<html>
<p id="time"></p>
<script>
var theDate = new Date(Date.parse(
'06/14/2020 9:41:48 PM UTC'));
document.getElementById("time")
.innerHTML = theDate.toLocaleString();
</script>
</body>
</html>
当我删除此示例中的“2020 年 6 月 14 日”日期时,它告诉我“日期无效”。我只想单独显示时间,没有日期。我该怎么做?
要仅打印时间,请使用 toLocaleTimeString
。
有关 Datefunction 的更多信息,您可以在 Mozilla documentation
找到那样做
var interval = setInterval(currentTime,1000);
function currentTime(){
var time = new Date();
document.getElementById("time").innerHTML = time.toLocaleTimeString();
}
<p id="time"></p>