当前位置:首页>>网页设计>>html语言教程>>正文

网页制作中Document 和 Document.all 有什么区别

文章出处:网络收集 作者: 发布时间:2007-05-09 收藏到QQ书签
<body>
<div id="aa">123456</div>
<input type="button" value="这里用 document 就出错" onclick="alert(document.aa.innerText);" />
<br />
<input type="button" value="这里用 document.all 就不出错" onclick="alert(document.all.aa.innerText);" />
</body>
Google