运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <p>Click the button to swap the text of the DIV element:</p> <p><button onclick="myFunction()">Click Me</button></p> <div id="myDIV">Hello</div> <script> function myFunction() { var x = document.getElementById("myDIV"); if (x.innerHTML === "Hello") { x.innerHTML = "Swapped text!"; } else { x.innerHTML = "Hello"; } } </script> </body> </html>