美文网首页
Window length 属性

Window length 属性

作者: panw3i | 来源:发表于2017-12-30 19:11 被阅读5次

    Window length 属性 返回当前窗口 frame 的个数

    <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 属性

          本文链接:https://www.haomeiwen.com/subject/cidngxtx.html