1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <!DOCTYPE HTML>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>[Modif button sur Radio checked]</title>
<script type="text/javascript">
function changeValue( id_btn, texte){
var oBtn = document.getElementById( id_btn);
if( oBtn){
oBtn.value = texte;
}
}
</script>
</head>
<body>
<input type="radio" id="radio_1" name="radios" onclick="changeValue( 'bt1', 'Bouton 1 sélectionné')"><label for="radio_1">bouton radio 1</label><br>
<input type="radio" id="radio_2" name="radios" onclick="changeValue( 'bt1', 'Bouton 2 sélectionné')"><label for="radio_2">bouton radio 2</label><br>
<input id="bt1" type="button" value="Aucune valeur">
</body>
</html> |
Partager