1:如果你把<script>标签放到<head>部分里。那么必须要加载方法。如
<!DOCTYPE html>
<html>
<head>
<script>
window.onload=function(){
document.getElementById("showlast").innerHTML="123"
}
</script>
</head>
<body>
<div id="showlast"></div>
<p>
这个如果不用加载方法的话,document是获取不到对象的。
</p>
</body>
</html>
2:如果你把<script>标签放到<body>里的话,就要放在<div>的下边,因为在未加载id为showlast的元素之前,javascript也获取不到该对象。应该这样写
<!DOCTYPE html>
<html>
<body>
<div id="showlast"></div>
<script>
document.getElementById("showlast").innerHTML="123"
</script>
<p>
要改变的元素放到javascript前。
</p>
</body>
</html>
这两个都可以实现向指定DIV输出内容,希望可以帮到你。
var div=document.getElementsByTagName("div")for(var i=0i<div.lengthi++) {
document.writeln(div[i].id)
}