运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The insertAdjacentText() Method</h2> <button onclick="myFunction()">Insert</button> <p>Click "insert" to insert some text inside the header:</p> <h2 id="myH2">My Header</h2> <script> function myFunction() { const h2 = document.getElementById("myH2"); let text = "My inserted text"; h2.insertAdjacentText("afterbegin", text); } </script> </body> </html>