运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 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>