中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

HTMLCollection length 屬性

DOM HTMLCollection 對(duì)象參考手冊(cè) DOM HTMLCollection


定義和用法

length 屬性返回 HTMLCollection 對(duì)象中元素的數(shù)量。

該屬性是只讀的。

該屬性在循環(huán) HTMLCollection 對(duì)象時(shí)很有用。

語(yǔ)法

HTMLCollection.length

返回值

返回一個(gè)數(shù)字,表示 HTMLCollection 對(duì)象中元素的數(shù)量。


瀏覽器支持

屬性
length Yes Yes Yes Yes Yes

實(shí)例

實(shí)例

循環(huán)輸出所有 class="myclass 的元素并修改它們的背景顏色:

var x = document.getElementsByClassName("myclass"); for (i = 0; i < x.length; i++) { x.item(i).style.backgroundColor = "red"; }

運(yùn)行代碼 ?

相關(guān)文章

HTMLCollection: item() 方法

HTML Element: getElementsByClassName() 方法

HTML Element: getElementsByTagName() 方法


DOM HTMLCollection 對(duì)象參考手冊(cè) DOM HTMLCollection

其他擴(kuò)展