运行 ❯
建立您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往Spaces
<!DOCTYPE html> <html> <body> <a id="myAnchor" href="https://w3schools.org.cn">A Link: Go to w3schools.com</a> <p id="demo">Click the button to remove the href attribute from the a element.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myAnchor").removeAttribute("href"); } </script> </body> </html>