Window frames 屬性
Window 對(duì)象定義和用法
frames 屬性返回窗口中所有命名的框架。
該集合是 Window 對(duì)象的數(shù)組,每個(gè) Window 對(duì)象在窗口中含有一個(gè)框架或 <iframe>。屬性 frames.length 存放數(shù)組 frames[] 中含有的元素個(gè)數(shù)。注意,frames[] 數(shù)組中引用的框架可能還包括框架,它們自己也具有 frames[] 數(shù)組。
提示: 使用 frames.length 來獲取框架的數(shù)量。
語法
window.frames
瀏覽器支持
所有主要瀏覽器都支持 frames 屬性
實(shí)例
實(shí)例
在頁面中查找所有框架的數(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 對(duì)象
更多建議: