Advertisement
AnoTest

ListeSelected

Mar 7th, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <select name="lacouleur" id="lacouleur" size="1" onchange="CouleurText()">
  2.     <option value="black" class="noir" selected="selected">Choisisez la couleur du Texte</option>
  3.     <option value="red" class="rouge" value="01">noir</option>
  4.  
  5.     <option value="red" class="rouge" value="02">rouge</option>
  6.     <option value="green" class="vert" value="03">vert</option>
  7.     <option value="blue" class="bleu" value="04">bleu</option>
  8. </select>
  9.  
  10. /////////////////////////////////////
  11. function CouleurText() {
  12.  
  13.     if (document.getElementById("lacouleur").selectedIndex == 1) {
  14.         document.getElementById("paragraphe").style.color = "black";
  15.     }
  16.     if (document.getElementById("lacouleur").selectedIndex == 2) {
  17.         document.getElementById("paragraphe").style.color = "red";
  18.     }
  19.     if (document.getElementById("lacouleur").selectedIndex == 3) {
  20.         document.getElementById("paragraphe").style.color = "green";
  21.     }
  22.     if (document.getElementById("lacouleur").selectedIndex == 4) {
  23.         document.getElementById("paragraphe").style.color = "blue";
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement