日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

document.all

發(fā)布時(shí)間:2025/3/19 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 document.all 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1、DOM

  WEB標(biāo)準(zhǔn)現(xiàn)在可真是熱門中熱門,不過(guò)下面討論的是一個(gè)不符合標(biāo)準(zhǔn)的document.all[]。DOM--DOCUMENT OBJECT MODEL文檔對(duì)象模型,提供了訪問(wèn)文檔對(duì)象的方法.例如文檔中有一個(gè)table,你要改變它的背景顏色,那就可以在javascript中用document.all[]訪問(wèn)這個(gè)TABLE。但DOM也有所不同,因?yàn)闉g覽器廠商之間的競(jìng)爭(zhēng),各瀏覽器廠商都開(kāi)發(fā)了自己的私有DOM,只能在自己的瀏覽器上正確運(yùn)行,document.all[]就是只能運(yùn)行在 IE是的微軟的私有DOM。為了正確理解DOM,給出IE4的DOM

  2、理解document.all[]

  從IE4開(kāi)始IE的object model才增加了document.all[],來(lái)看看document.all[]的Description:
Array of all HTML tags in the document.Collection of all elements contained by the object.

  也就是說(shuō)document.all[]是文檔中所有標(biāo)簽組成的一個(gè)數(shù)組變量,包括了文檔對(duì)象中所有元素(見(jiàn)例1)。

  IE’s document.all collection exposes all document elements.This array provides access to every element in the document.

  document.all[]這個(gè)數(shù)組可以訪問(wèn)文檔中所有元素。
 例1(這個(gè)可以讓你理解文檔中哪些是對(duì)象)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Document.All Example</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
</head>
<body>
<h1>Example Heading</h1>
<hr />
<p>This is a <em>paragraph</em>. It is only a <em>paragraph.</em></p>
<p>Yet another <em>paragraph.</em></p>
<p>This final <em>paragraph</em> has <em id="special">special emphasis.</em></p>
<hr />
<script type="text/javascript">
<!--
var i,origLength;
origLength = document.all.length;
document.write('document.all.length='+origLength+"<br />");
for (i = 0; i < origLength; i++)
{
document.write("document.all["+i+"]="+document.all[i].tagName+"<br />");
}
//-->
</script>
</body>
</html>
運(yùn)行后的結(jié)果是:

Example Heading


This is a paragraph. It is only a paragraph.

Yet another paragraph.

This final paragraph has special emphasis.


document.all.length=18
document.all[0]=!
document.all[1]=HTML
document.all[2]=HEAD
document.all[3]=TITLE
document.all[4]=META
document.all[5]=BODY
document.all[6]=H1
document.all[7]=HR
document.all[8]=P
document.all[9]=EM
document.all[10]=EM
document.all[11]=P
document.all[12]=EM
document.all[13]=P
document.all[14]=EM
document.all[15]=EM
document.all[16]=HR
document.all[17]=SCRIPT
例2:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>單擊DIV變色</title>
<style type="text/css">
<!--
#docid{
height:400px;
width:400px;
background-color:#999;}
-->
</style>
</head>
<body><div id="docid" name="docname" onClick="bgcolor()"></div>
</body>
</html>
<script language="javascript" type="text/javascript">
<!--
function bgcolor(){
document.all[7].style.backgroundColor="#000"
}
-->
</script>
例子在E:\skyline\test里面

轉(zhuǎn)載于:https://www.cnblogs.com/csky2002/archive/2006/10/26/541115.html

總結(jié)

以上是生活随笔為你收集整理的document.all的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。