setTimeout用法:利用setTimeout在页面上不停的显示当前日期时间

<head>
<script>
	function showTime() {
		document.getElementById("h1").innerHTML = new Date().toLocaleString();
		setTimeout("showTime()", 1000);
	};
</script>
</head>
<body onload="showTime()">
	<h1 id="h1"></h1>
</body>
</html>

你可能感兴趣的:(setTimeout用法:利用setTimeout在页面上不停的显示当前日期时间)