Advertisement
wildanfuady

Untitled

Nov 8th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Element Tebal dan Tidak
  5. </title>
  6. </head>
  7. <body>
  8. <ul>
  9. <li>Jeruk</li>
  10. <li>Mangga</li>
  11. <li>Pisang</li>
  12. <li>Jambu</li>
  13. <li>Pepaya</li>
  14. <li>Alpukat</li>
  15. <li>Pir</li>
  16. <li>Anggur</li>
  17. </ul>
  18. <button onclick="changeElement()">Ubah Warna Element Genap</button>
  19. <script>
  20. function changeElement(){
  21. var list = document.getElementsByTagName('li');
  22. // list[1].style.color = "blue";
  23. // list[1].style.fontWeight = "bold";
  24. // list[3].style.color = "blue";
  25. // list[3].style.fontWeight = "bold";
  26. // list[5].style.color = "blue";
  27. // list[5].style.fontWeight = "bold";
  28. // list[7].style.color = "blue";
  29. // list[7].style.fontWeight = "bold";
  30. for(var i = 0; i < list.length; i++){
  31.  
  32. if(i % 2 == 0){
  33. continue;
  34. } else {
  35. list[i].style.color = "blue";
  36. list[i].style.fontWeight = "bold";
  37. }
  38. }
  39. }
  40. </script>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement