Forum de discussion
Forum « Programmation Javascript » (archives)
Re: accès à textarea générés dynamiquement
Envoyé: 10 juin 2004, 11h13 par thc
<? BOUCLE PHP{ ?>
<textarea name="descriptif[]" onkeyDown="compter_jour(this.form,eval(<? echo $nb_champs ?>))"><? echo $descriptif; ?></textarea>
<? }?> <!-- fin de ma boucle -->
Dans ma fonction:
function compter_jour(f,nb) {
var nb_car=0;
var txt="";
for(i=0; i<nb; i++){
//txt += f.descriptif[i].value;
//txt += eval("f."+i+ ".value");
//txt += f.eval(i).value;
//txt += f.descriptif["eval(i)"].value;
}
txt += f.d0.value;
nb_car = txt.length;
f.nbcar.value = nb_car;
}
Il sagit d'un total que je dois calculer, encore dsl pour la décomposition du post.
Réponses
|