js做网页时钟,哪里错了
发布网友
发布时间:2022-04-23 01:29
我来回答
共2个回答
热心网友
时间:2022-04-23 02:58
<html>
<head>
<title>左侧</title>
</head>
<body>
<table width="100%" height="100%" border="1">
<tr width="100%" height="100%">
<td border="1" bordercolor="red"></td>
<td id="timeArea" align="right" valign="bottom"></td>
</tr>
</table>
<script type="text/javascript">
function start(){
var now=new Date();
var hr=now.getHours();
var min=now.getMinutes();
var sec=now.getSeconds();
var clocktext="现在时间:"+hr+":"+min+":"+sec;
var timeTD=document.getElementById("timeArea");//获得时间字符串放置的单元格
timeTD.innerText=clocktext;//将时间字符串作为单元格的显示文本内容
window.setTimeout("start()",1000);//将时间字符串作为单元格的显示文本内容
}
start();//亲试,这样就可以了
</script>
</body>
</html>
热心网友
时间:2022-04-23 04:16
楼上是高手啊,学习了!追问为什么,楼上的根本就是拷贝来的