Advertisement
AnoTest

Liste_Deroulant_Abbonée

Mar 17th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.88 KB | None | 0 0
  1. //Made by samir
  2. function locationAbbones() {
  3.  
  4.  
  5.     if (document.getElementById("ListAbbone").selectedIndex == 0) {
  6.         var url = "./ABONNE/ListeDesAbonne.php";
  7.         window.location.href = url;
  8.     }
  9.  
  10.     if (document.getElementById("ListAbbone").selectedIndex == 1) {
  11.         var url = "./ABONNE/CreationDesAbonneNew.php";
  12.         window.location.href = url;
  13.     }
  14.     if (document.getElementById("ListAbbone").selectedIndex == 2) {
  15.         var url = "./ABONNE/ModificationDesAbonneNew.php";
  16.         window.location.href = url;
  17.     }
  18.     if (document.getElementById("ListAbbone").selectedIndex == 3) {
  19.         var url = "./ABONNE/SuppresionDesAbonnesNew.php";
  20.         window.location.href = url;
  21.     }
  22.     if (document.getElementById("ListAbbone").selectedIndex == 4) {
  23.         var url = "./ABONNE/RechercheDesAbonnesNew.php";
  24.         window.location.href = url;
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement