js在页面中动态显示当前时间
时间: 2023-12-17 07:25:16 浏览: 140
JS动态显示当前时间
4星 · 用户满意度95%
JS可以在网页上动态地显示当前时间。具体实现方法如下:
1. 在页面设置显示时间的位置,例如:<span id="showTime"></span>
2. 编写JS代码,获取当前时间并将其显示在指定位置。代码如下:
<script>
function getTime(){
var date = new Date;
var time = date.getFullYear()+ "年" + (date.getMonth() + 1) + "月" + date.getDay() + "日" + date.getHours() + "时" + date.getMinutes() + "分" + date.getSeconds() + "秒";
var showTimeSpan = document.getElementById("showTime");
showTimeSpan.innerHTML = time;
}
window.setInterval("getTime()", 1000);
</script>
阅读全文