le 23/06/2003 à 14:41
aho
Comment lier deux listes c-a-d le redulat de la dexième liste dépend de la première liste ?
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function showFAQ(form) {
form.answer.value = form.question.options[form.question.selectedIndex].value;
}
// End -->
</SCRIPT>
</HEAD>
<BODY>
<center>
<form name=faqform>
<table border=1 cellspacing=0 cellpadding=5>
<tr bgcolor="#FFF6BF">
<td align=center><font face="verdana,arial" size="-1" color="#000080">
<b>Votre titre ici</b></font></td>
</tr>
<tr bgcolor="#ffffff"><td><font color="#000080" face="verdana,arial" size="-1"><br>
Choisissez un des liens ci-dessous et cliquez dessus pour avoir les informations.
<p>
<ul><select size=10 name=question onChange="javascript:showFAQ(this.form);">
<option value="Information 1"> --> Lien 1
<option value="Information 2"> --> Lien 2
</select>
</ul>
<p>
Information:
<p>
<ul>
<textarea name="answer" rows=15 cols=50 wrap=virtual></textarea>
</ul>
</font>
</td>
</tr>
</table>
</form>
</center>