E' una cosa fattibile o è fantascienza?
mi immagino Spock che tenta di compilare un codice javascript per schivare gli asteroidi con l'Enterprise...
"IL QUINTO RADIO BUTTON NON RISPONDE AI COMANDI!! PRESTO, BISOGNA RICOMPILARE IL JAVASCRIPT"
Tornando a ciò che è fattibile, prova una cosa del genere:
codice:
<!DOCTYPE HTML>
<html>
<head>
<title>Esempio</title>
<meta charset="utf-8">
</head>
<body>
<label><input type="radio" name="numero" value="1" checked>1</label>
<br><label><input type="radio" name="numero" value="2">2</label>
<br><label><input type="radio" name="numero" value="3">3</label>
<br><label><input type="radio" name="numero" value="4">4</label>
<br><input type="radio" name="numero" value=""><input type="number" value="" onchange="this.previousSibling.checked=true;this.previousSibling.value=this.value">
</body>
</html>