9_控制属性.html 632 B

123456789101112131415161718192021222324
  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. .box{
  9. width: 100px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <img src="./image/img2.png" alt="img">
  15. <script>
  16. var img = document.getElementsByTagName("img")[0];
  17. // setAttribute 接受两个参数第一个是属性名,第二个是属性值
  18. img.setAttribute("src","./image/img1.png");
  19. img.setAttribute("class","box");
  20. console.log(img.getAttribute("alt"));
  21. </script>
  22. </body>
  23. </html>