天天看點

Window length 屬性

Window length 屬性

Window 對象

length 屬性傳回在目前視窗中frames的數量(包括IFRAMES)。

window.length

Window length 屬性
Window length 屬性
Window length 屬性
Window length 屬性
Window length 屬性

所有主要浏覽器都支援 length 屬性

查找頁面上的frames數量,并改變每一frame元素的src屬性為"www.runoob.com":

<html>

<body>

<iframe src="http://www.microsoft.com"></iframe>

<iframe src="http://www.google.com"></iframe>

<iframe src="http://www.youtube.com"></iframe>

<script>

for (var i=0; i<frames.length; i++)

{

frames[i].location="http://www.runoob.com"

}

</script>

</body>

</html>

Window length 屬性