运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body onresize="myFunction()"> <p>Assign an "onresize" event to a body element.</p> <p>Try to resize the browser window.</p> <p>Window resized <span id="demo">0</span> times.</p> <script> var x = 0; function myFunction() { var txt = x += 1; document.getElementById("demo").innerHTML = txt; } </script> </body> </html>