Menu deroulant popup

Menu deroulant popup - HTML/CSS - Programmation

Marsh Posté le 01-07-2004 à 18:24:13    

Salut,
j'ai un menu deroulant qui ouvre des popups sauf le premier choix de la liste (1) qui ne fait absolument rien.
 
 
javascript:

Code :
  1. <script language ="JavaScript" >
  2.     function openNewWindow()
  3.       {
  4.         var index = document.countriesForm.countriesChoiceSelect.selectedIndex;       
  5.         if( index > 1 ) {     
  6.         window.open( document.countriesForm.countriesChoiceSelect.options[index].value  );
  7.         }
  8.       }
  9.     var whitespace = " \t\n\r";
  10. </script>


 
Menu deroulant:

Code :
  1. <form name="countriesForm" method="post" action="/CatalogAction.do"><select name="countriesChoiceSelect" class="form-1" onChange="openNewWindow()">
  2.           <option selected>Choix...</option>
  3.           <option value="../../renvoi/rd-espace-emploi.html">1</option>
  4.           <option value="../../renvoi/rd-sportcourchevel.html">2</option>
  5.           <option value="../../renvoi/rd-nostalgie.html">3</option>
  6.         </select>
  7.       </form>


 
 
Quelqu'un voit pourquoi?

Reply

Marsh Posté le 01-07-2004 à 18:24:13   

Reply

Marsh Posté le 06-10-2004 à 16:06:55    

Citation :

if( index > 1 )


 
met > 0 ==> Un menu commence à compter à 0

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed