运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>The HTML Dialog Object</h1> <h2>The show() and close() Methods</h2> <p>Click the buttons to show and close a dialog window.</p> <p> <button onclick="showDialog()">Show dialog</button> <button onclick="closeDialog()">Close dialog</button> </p> <dialog id="myDialog">This is a dialog window</dialog> <script> const dialog = document.getElementById("myDialog"); function showDialog() { dialog.show(); } function closeDialog() { dialog.close(); } </script> </body> </html>