Forum de discussion
Forum « Programmation Javascript » (archives)
Re: champs file désactivé et non-désactivé (disabled)
Envoyé: 28 décembre 2005, 10h15 par Oznog
Tout comme il suffit de mentionner "disabled". Tu peux modifier cette valeur boléenne en Javascript :
// Champ désactivé
disabled = true;
// Champ activé
disabled = false;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<title>Trucsweb - Champ file désactivé</title>
</head>
<body><form action="" method="post">
<input name="monFichier1" type="file" onChange="this.form.monFichier2.disabled=false;" >
<input name="monFichier2" type="file" disabled onChange="this.form.monFichier3.disabled=false;" >
<input name="monFichier3" type="file" disabled onChange="this.form.monFichier4.disabled=false;" >
<input name="monFichier4" type="file" disabled onChange="this.form.monFichier5.disabled=false;" >
<input name="monFichier5" type="file" disabled size="50" >
</form>
</body>
</html>
Ciao
Oznog
Réponses
|