运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body onresize="myFunction()"> <p>Try to resize the browser window to display the windows height and width.</p> <p id="demo"></p> <script> function myFunction() { let w = window.outerWidth; let h = window.outerHeight; let txt = "Window size: width=" + w + ", height=" + h; document.getElementById("demo").innerHTML = txt; } </script> </body> </html>