Forum de discussion
Forum « Programmation Javascript » (archives)
Re: pb d'affichage en grisé
Envoyé: 1er avril 2005, 13h26 par Oznog
Il y a beaucoup de détails qui cloche. Un bon conseil, par d'un code stictement Javascript et fonctionnel. Attention au "backGroundColor" qui doit être "backgroundColor".
Un exemple fonctionnel :
<script language="javascript">
function twSelectBGC(_select,_valeur) {
for (x=0 ; x<_select.options.length;x++) {
if (_select.options[x].text==_valeur.value) {
_select.options[x].style.backgroundColor = 'gray';
} else {
_select.options[x].style.backgroundColor = 'white';
}
}
return true;
}
</script>
<form name="monForm" >
<input type="text" name="monChamp" value="Astronomie" ><br >
<select name="maListe">
<option value="111" selected>111</option>
<option value="222" style="backGround-Color:#ccc">222</option>
<option value="Astronomie">Astronomie</option>
<option value="444">444</option>
<option value="555">555</option>
<option value="666">666</option>
</select>
<input type="button" name="Button" value="Button" OnClick="twSelectBGC(this.form.maListe,this.form.monChamp)" >
</form>
Ciao
Oznog
Réponses
|