维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <body> <p id="demo">Натисніть кнопку, щоб замінити цей документ новим вмістом.</p> <button onclick="myFunction()">Спробуй це</button> <script> function myFunction() { document.open("text/html","replace"); document.write("<h2>Вивчати HTML DOM – це цікаво!</h2>"); document.close(); } </script> </body> </html>