码迷,mamicode.com
首页 > 其他好文 > 详细

script中获取不到元素id

时间:2016-12-11 15:20:40      阅读:184      评论:0      收藏:0      [点我收藏+]

标签: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>

script中获取不到元素id

标签:meta   innerhtml   date   java   解决办法   type   val   body   node   

原文地址:http://www.cnblogs.com/lyjmatrix/p/6159596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!