运行 ❯
获取您
自身
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Anchor Object</h1> <h2>Create an a Element</h2> <button onclick="myFunction()">Try it</button> <p>Click "Try it" to create an a element.</p> <script> function myFunction() { const x = document.createElement("A"); const t = document.createTextNode("Tutorials"); x.setAttribute("href", "https://w3schools.org.cn"); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>