标签:meta innerhtml date java 解决办法 type val body node
<head>
<script type="text/javascript">
function getchange(){
var date = new Date();
var sec = date.getSeconds();
var spanNode = document.getElementById("time");
spanNode.innerHTML=sec;
}
getchange(); //在这里调用函数,会出现找不到spannode的情况 解决办法是 在body中写加上onload =ready(),或者,script写在body下面。然而使用window。setinterval(调用functions)时候,无论script放在哪里都可行。
window.setInterval("getchange()",1000);
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body >
当前系统时间:<span id="time"></span>
</body>
</html>
标签:meta innerhtml date java 解决办法 type val body node
原文地址:http://www.cnblogs.com/lyjmatrix/p/6159596.html