Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/09/2002, 11:22
bet
 
Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 23 años, 9 meses
Puntos: 0
Re: Seleccionar multiples "checkbox"?

Algo así es lo que buscás?

Código:
 <html>
<head>
<title> Marcar Todos </title>
<script language="JavaScript">
<!--
function marcarTodos(){
	if (document.forms[0].todos.checked){
		for (i=0;i<document.forms[0].length;i++){
			if ((document.forms[0].elements[ i].name) == "clt"){
				document.forms[0].elements[ i].checked = true;
			}
		}
	}
	else {
			for (i=0;i<document.forms[0].length;i++){
			if ((document.forms[0].elements[ i].name) == "clt"){
				document.forms[0].elements[ i].checked = false;
			}
		}
	}


}
//-->
</script>

</head>

<body bgcolor="#FFFFFF">
<form method=post action="">

Marcar/Desmarcar todos <input type="checkbox" name="todos" onClick="marcarTodos();"><br><br>
* <input type="checkbox" name="clt"> <br>
* <input type="checkbox" name="clt"> <br>
* <input type="checkbox" name="clt"> <br>
* <input type="checkbox" name="clt"> <br>
* <input type="checkbox" name="clt"> <br>
</form>
<br><br><br>
<br><br>
 </body>
</html>
<hr noshade size=1><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE]