JavaScript 参考手册
Window frames 属性
在页面中查找所有框架的数量,然后修改frame元素的src属性为 "mifengjc.com"
源代码:
点击运行 »
<html> <body> <iframe src="http://microsoft.com"></iframe> <iframe src="http://google.com"></iframe> <iframe src="http://youtube.com"></iframe> <script> for (var i = 0; i < frames.length; i++) { frames[i].location = "http://mifengjc.com" } </script> </body> </html>
运行结果:
点击运行 »