document.all,documentallitem
http://www.itjxue.com 2023-01-14 02:04 来源:未知 点击次数:
GetObj("ID号") 和 document.all("ID号")有什么区别?
document代表整个网页文档,这里使用的是它的all[]属性,该属性为html文档所包含的所有元素的集合,这里加上了参数"ID号",那么它将得到该html文档中以“ID号”为参数元素对象。
getElementById
根据标签属性Id 得到该标签。
VB编程 Document.All
Dim Str="message" 语法错了,不能这样写,要这样:
Dim Str as String
Str="message"
if (document.all)问题
document.all ---针对IE
document.layers ---针对Netscape
这是两个集合,all只在ie里面有效,layers只在nc里面有效
if (document.all)判断是否是IE浏览器