10_DOM控制属性.html 748 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .active{
  9. color: red;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <a href="https://www.baidu.com">百度</a>
  15. <div class="btn">切换</div>
  16. <script>
  17. var oA = document.getElementsByTagName("a")[0];
  18. var oBtn = document.getElementsByClassName("btn")[0];
  19. oBtn.onclick = function(){
  20. oA.innerText = "淘宝";
  21. oA.setAttribute("href","https://www.tmall.com");
  22. console.log(oA.getAttribute("href"));
  23. oBtn.setAttribute("class","btn active")
  24. }
  25. </script>
  26. </body>
  27. </html>