“HTML Random Texrt” Code-Antworten

Zufallszahl Text in HTML

<button class="button" onclick="RandomID();" style="font-family: sans-serif;">RUN</button>
<input class="input" type="text" id="id" name="id" size="3" readonly />
Disgusted Dormouse

Zufallszahl Text in HTML

function RandomID() {
  var value;
  var rnd = Math.floor(Math.random() * 11);

  if (rnd === 7)
    value = "Wassup";
  else if (rnd <= 5)
    value = "Hello";
  else
    value = rnd;

  document.getElementById('id').value = value;
}
Disgusted Dormouse

HTML Random Texrt

2626626
fati fleur

Ähnliche Antworten wie “HTML Random Texrt”

Fragen ähnlich wie “HTML Random Texrt”

Weitere verwandte Antworten zu “HTML Random Texrt” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen