<!DOCTYPE html>
<html>
<head>
<title>MyHtml_04.html</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=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
#di {
width: 180px;
height: 20px;
background:orange;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="di"> </div>
<br/>
<input type="button" value="暂停" onclick="stop();"/>
<script type="text/javascript">
function getTime(){
var date=new Date();
var standerTime=date.toLocaleString();
var div=document.getElementById("di");
div.innerHTML=standerTime;
}
var id=setInterval("getTime();", 1000);
function stop(){
clearInterval(id);
}
</script>
</body>
</html>
|
|