运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Object</h1> <h2>The frames Property</h2> <p>Number of frames in this window:</p> <p id="demo"></p> <iframe style="width:100%;height:100px"></iframe> <iframe style="width:100%;height:100px"></iframe> <iframe style="width:100%;height:100px"></iframe> <script> let length = window.length; document.getElementById("demo").innerHTML = length; </script> </body> </html>