当前位置: 代码迷 >> JavaScript >> window.onload=count;没反应,该怎么处理
  详细解决方案

window.onload=count;没反应,该怎么处理

热度:525   发布时间:2012-09-10 11:02:32.0
window.onload=count;没反应
function showPic(whichpic){
var source=whichpic.getAttribute("href");  
var placeholder=document.getElementById("placeholder"); 
placeholder.setAttribute("src",source);
}
function count()
{
var body=document.getElementByTagName("body")[0];
alert(body.childNodes.length);
alert("hi");
}
window.onload=count;用ie9,firefox。safari都不行,代码错了吗??



------解决方案--------------------
document.getElementsByTagName("body")[0]啦
  相关解决方案