Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/03/2006, 18:42
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 9 meses
Puntos: 39
Código:
function chkClick(idx)
{
  t=0;
  horas = document.getElementsByName('horas[]');
  for (i=idx-1; i<idx+1; i++)
    if (horas[i]){
      t++;
      if (!horas[i].checked) break;
    }
  if (i-idx+2==t) alert("ok");
}
Código HTML:
<input type="checkbox" name="horas[]" value="2006-03-17 11:00:00" onClick="chkClick(0);" />
<input type="checkbox" name="horas[]" value="2006-03-17 11:30:00" onClick="chkClick(1);" />
<input type="checkbox" name="horas[]" value="2006-03-17 12:00:00" onClick="chkClick(2);" />
<input type="checkbox" name="horas[]" value="2006-03-17 12:30:00" onClick="chkClick(3);" /> 
Pruebalo. Quizas haya errores porque no lo he probado.
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.