Window length 屬性
Window 對象定義和用法
ength屬性返回在當(dāng)前窗口中frames的數(shù)量(包括IFRAMES)。
語法
window.length
瀏覽器支持
所有主要瀏覽器都支持 length 屬性
實例
實例
查找頁面上的frames數(shù)量,并改變每一frame元素的src屬性為"w3cschool.cn":
<html>
<body>
<iframe src="http://microsoft.com" rel="external nofollow" ></iframe>
<iframe src="http://google.com" rel="external nofollow" ></iframe>
<iframe src="http://youtube.com" rel="external nofollow" ></iframe>
<script>
for (var i=0; i<frames.length; i++)
{
frames[i].location="http://w3cschool.cn"
}
</script>
</body>
</html>
<body>
<iframe src="http://microsoft.com" rel="external nofollow" ></iframe>
<iframe src="http://google.com" rel="external nofollow" ></iframe>
<iframe src="http://youtube.com" rel="external nofollow" ></iframe>
<script>
for (var i=0; i<frames.length; i++)
{
frames[i].location="http://w3cschool.cn"
}
</script>
</body>
</html>
Window 對象
更多建議: