Window length 属性
Window 对象定义和用法
ength属性返回在当前窗口中frames的数量(包括IFRAMES)。
语法
window.length
浏览器支持
所有主要浏览器都支持 length 属性
实例
实例
查找页面上的frames数量,并改变每一frame元素的src属性为".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://.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://.cn"
}
</script>
</body>
</html>
Window 对象