10
0

10_dataset.html 611 B

1234567891011121314151617181920212223
  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. <ul>
  10. <li data-hash="fistr" data-aa="hello">first page</li>
  11. <li data-hash="second">second page</li>
  12. <li data-hash="third">third page</li>
  13. </ul>
  14. <script>
  15. let aLi = document.querySelectorAll("li");
  16. for(let i =0;i<aLi.length;i++){
  17. aLi[i].onclick = function(e){
  18. console.log(e.target.dataset.hash);
  19. }
  20. }
  21. </script>
  22. </body>
  23. </html>