il me semble que ton test sur la valeur du bouton radio n'est pas bon.
essaye comme ca :
Citation :
function copie() {
if (document.formulaire.change[0].checked) { document.formulaire.resultat.value=document.formulaire.minus.value.toUpperCase()
} else {
document.formulaire.resultat.value=document.formulaire.minus.value
}
}
|
pour le javascript, moi je me sers de la doc de netscape que tu trouve la : http://developer.netscape.com/docs [...] deJS13.zip
C'est la norme sur le javascript. Il n'y a pas tout : IE a notamment ajouter un grand nombre de chose en plus du javascript standard, mais ce qui est dans cette doc marche sous IE est sous netscape !
voila ce qu'on peut lire sur la propriét value d'un radio button dans cette doc :
Citation :
Description When a VALUE attribute is specified in HTML, the value property is a string that reflects it. When a VALUE attribute is not specified in HTML, the value property is a string that evaluates to "on". The value property is not displayed on the screen but is returned to the server if the radio button or checkbox is selected.
Do not confuse the property with the selection state of the radio button or the text that is displayed next to the button. The checked property determines the selection state of the object, and the defaultChecked property determines the default selection state. The text that is displayed is specified following the INPUT tag.
|