Javascript menu déroulant. Sélectionner un element du menu

Javascript menu déroulant. Sélectionner un element du menu - HTML/CSS - Programmation

Marsh Posté le 05-03-2003 à 18:43:01    

Voila mon formulaire:  
 
<SELECT name=type_champs onchange=\"check_champs();\">
<OPTION VALUE=0>Pas de saisie</OPTION>
<OPTION VALUE=1>Zone de texte</OPTION>
<OPTION VALUE=2>Liste à choix multiple</OPTION>
<OPTION VALUE=3>Bouton d'option</OPTION>
<OPTION VALUE=4>Case à cocher</OPTION>
</SELECT>";
 
et quand j'applle ma fonction ca fonctionne mais il ne me sélectionne pas  le 3ème élements il me laisse le premier sélectionner.  
 
function maj_champ(type)
{
 form.type_champs.options[3].seleted=true;
}
 
Ou est l'erreur???


---------------
Donne un poisson à un homme il mangera une journée, Apprends lui à pêcher, il mangera toute sa vie...
Reply

Marsh Posté le 05-03-2003 à 18:43:01   

Reply

Marsh Posté le 05-03-2003 à 19:00:22    

simoes a écrit :

Voila mon formulaire:  
 
<SELECT name=type_champs onchange=\"check_champs();\">
<OPTION VALUE=0>Pas de saisie</OPTION>
<OPTION VALUE=1>Zone de texte</OPTION>
<OPTION VALUE=2>Liste à choix multiple</OPTION>
<OPTION VALUE=3>Bouton d'option</OPTION>
<OPTION VALUE=4>Case à cocher</OPTION>
</SELECT>";
 
et quand j'applle ma fonction ca fonctionne mais il ne me sélectionne pas  le 3ème élements il me laisse le premier sélectionner.  
 
function maj_champ(type)
{
 form.type_champs.options[3].seleted=true;
}
 
Ou est l'erreur???
 


 
tu peux mettre un id a ton select :  

Code :
  1. <SELECT id="type_champs" name="type_champs" onchange=\"check_champs();\">


 
et dans ta fonction tu fais :  

Code :
  1. document.getElementById("champs" ).options[3].selected=true;

Reply

Marsh Posté le 05-03-2003 à 21:28:02    


:love: :love:


Message édité par Harkonnen le 05-03-2003 à 21:28:28

---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 05-03-2003 à 21:34:43    

extra ca marche!


---------------
Donne un poisson à un homme il mangera une journée, Apprends lui à pêcher, il mangera toute sa vie...
Reply

Marsh Posté le 05-03-2003 à 21:34:54    

simoes a écrit :


function maj_champ(type)
{
 form.type_champs.options[3].seleted=true;
}
 
Ou est l'erreur???


Mets un "c" à "selected" :sarcastic:


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
Reply

Marsh Posté le 23-01-2009 à 21:39:43    

Bonjour, je souhaite faire la même chose  
mais avec cette méthode c'est la valeur de l'index qui est pris en compte.
Moi j'aimerai sélectionner en fonction de la valeur de l'élément, le champ Value.
 
merci de votre aide

Reply

Sujets relatifs:

Leave a Replay

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