在javascript中 怎么实现网页打开 时间动态显示
发布网友
发布时间:2022-09-19 05:28
我来回答
共3个回答
热心网友
时间:2023-10-25 16:27
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>时钟</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=GB18030">
<STYLE type="text/css">
<!--
/*设置样式:无边框的文本框*/
INPUT {
font-size: 20px;
border-style:none ;
background-color:#FF8B3B;
}
-->
</STYLE>
<script type="text/javascript">
function showTime(){
var time=new Date();
var hour=time.getHours();
var minute=time.getMinutes();
var second=time.getSeconds();
if(minute<10){
minute="0"+minute;
}
if(second<10){
second="0"+second;
}
document.getElementById("t").value=hour+":"+minute+":"+second;
setTimeout("showTime()",1000);
}
</script>
</head>
<body onLoad="showTime()">
现在时间:<INPUT id="t" name="time" type="text" size="10">
</body>
</html>
热心网友
时间:2023-10-25 16:27
最好不用 window.setTnterval(showTime,1000);
应该使用 window.setTimeout(showTime,1000);
热心网友
时间:2023-10-25 16:28
是setInterval 不是setTnterval