“radio d'entrée” Réponses codées

boutons radio html

<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
Funny Fish

Bouton radio HTML vérifié

  <input type="radio" id="huey" name="drone" value="huey"
         checked> 
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio-->
Cruel Chipmunk

radio sélectionné

//checked
  <input type="radio" id="huey" name="drone" value="huey"
         checked>
Andrew Lautenbach

Radio d'entrée HTML

<form>
  <p>Veuillez choisir la meilleure méthode pour vous contacter :</p>
  <div>
    <input type="radio" id="contactChoice1"
     name="contact" value="email">
    <label for="contactChoice1">Email</label>

    <input type="radio" id="contactChoice2"
     name="contact" value="telephone">
    <label for="contactChoice2">Téléphone</label>

    <input type="radio" id="contactChoice3"
     name="contact" value="courrier">
    <label for="contactChoice3">Courrier</label>
  </div>
  <div>
    <button type="submit">Envoyer</button>
  </div>
</form>
Nice Nightingale

boutons radio

<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
Unsightly Unicorn

radio d'entrée

<form>

<p>Select a maintenance drone:</p>

<div>
  <input type="radio" id="huey" name="drone" value="huey"
         checked>
  <label for="huey">Huey</label>
</div>

<div>
  <input type="radio" id="dewey" name="drone" value="dewey">
  <label for="dewey">Dewey</label>
</div>

<div>
  <input type="radio" id="louie" name="drone" value="louie">
  <label for="louie">Louie</label>
</div>
</form>

<!--- If you want to be able to make several elements selectable,
the "name" attribute must be different for each of them... -->

// source : https://developer.mozilla.org/
Gorgeous Gemsbok

Réponses similaires à “radio d'entrée”

Questions similaires à “radio d'entrée”

Plus de réponses similaires à “radio d'entrée” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code