Html , liste de choix

marjorie -  
dugenou Messages postés 6262 Statut Contributeur -
bonsoir,

je suis une débutante en langage html , et j 'utilise une liste déroulante pour effectuer un choix , et en fait chaque choix doit me renvoyer a une page html qui correspond à ce choix , je voulais savoir si quelqu 'un pouvait m 'aider .
merci d 'avance pour vos réponses

1 réponse

  1. dugenou Messages postés 6262 Statut Contributeur 1 455
     
    Bonsoir,

    Voici un exemple concernant des liens vers des CMS :

    <form name=cms>
    <select size=1 name=choix>
    <option selected></option>
    <option value=https://www.freeguppy.org/index.php?lng=fr>Guppy</option>
    <option value=http://phortail.free.fr
    <option value=http://www.portix.org
    <option value=http://www.en1heure.com/itseasy/>Itseasy</option>
    </select><br />
    <p><input onclick=window.location.href=document.cms.choix.options[document.cms.choix.selectedIndex].value type=button value="OK" name=bouton>
    </form>

    Bon courage.
    0