1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| <html>
<head>
<title>essai checkbox</title>
<script type="text/javascript">
function cocher(obj,etat)
{
for(var i=0; i<obj.getElementsByTagName('input').length;i++)
{
if(obj.getElementsByTagName('input')[i].type=='checkbox')
{
obj.getElementsByTagName('input')[i].checked=etat;
}
}
}
</script>
</head>
<body>
Formulaire 1
<form>
<table>
<tr>
<td>Tout cocher/decocher</td><td><input type="checkbox" onclick="cocher(this.form,this.checked)"/></td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
</table>
</form>
Formulaire 2
<form>
<table>
<tr>
<td>Tout cocher/decocher</td><td><input type="checkbox" onclick="cocher(this.form,this.checked)"/></td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
<tr>
<td>Checkbox</td><td><input type="checkbox"/> </td>
</tr>
</table>
</form>
</body>
</html> |
Partager