页面时钟

来源:互联网 发布:木门销售软件 编辑:程序博客网 时间:2024/05/22 05:24
<html>
<head>
<meta http-equiv="Content-Type" content="text//html;charset=utf-8">
<title>页面时钟</title>
<script type= "text/javascript">
</head>
<body>
<input type="text" size="30" id="one" /><br>
<input type="button" id="otwo"  value="开始" onclick="fun1"/><br>
<input type="button" id="three" value="结束" onclick="fun2"/><br>
<script>
var id ;
function fun1{
setTime();
if(!id){
setInterval(setTime,1000);
}
}
function setTime(){
var data = new Date();
document.getElementById("one").value = data.toLocaleString();
}
function fun2(){
clearInterval(id);
id = undefined;
}

</script>

</body>
</html>
0 0
原创粉丝点击