5.属性.html 640 B

12345678910111213141516171819202122
  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. </head>
  8. <body>
  9. <div id="box" data-aa="你好" data-aa-bb="ab"></div>
  10. <script>
  11. const box1 = document.getElementById("box");
  12. box1.setAttribute('address','哈尔滨');
  13. console.log(box.getAttribute("address"));
  14. box1.dataset.bb = 'hi';
  15. console.log(box1.dataset.aa);
  16. console.log(box1.dataset.bb);
  17. console.log(box1.dataset.aaBb);
  18. box1.cc = '12';
  19. console.log(box1.cc);
  20. </script>
  21. </body>
  22. </html>