HTML
Código HTML:
Ver original
<table id="resultado"> <tr> </tr> <!--FIN CABECERA TABLA--> <tbody> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> <tr> <!--Ejemplos--> </tr> </tbody> <!--FIN CONTENIDO TABLA--> </table>
JAVASCRIPT
Código Javascript:
Ver original
//Mostrar el contenido de la visualizacion del producto function mostrarContenido() { oculto = document.getElementById("oculto"); alerta= document.getElementById("alerta"); error= document.getElementById("error"); advertencia= document.getElementById("advertencia"); check = document.getElementById("check"); if (check.checked) { oculto.style.display='block'; alerta.style.display='block'; advertencia.style.display='none'; } else { advertencia.style.display='block'; oculto.style.display='none'; alerta.style.display='none'; } }
ESTO ME FUNCIONA PERFECTO. PERO SOLO CON EL PRIMER LINK
LO QUE YO NECESITARIA ES QUE EL ID Y EL NOMBRE DE CADA INPUT SE VALLA INCREMENTANDO A MEDIDA QUE SE ENCUENTRE UNA NUEVA FILA Y DE ALGUNA MANERA DECIR COMO JAVACRIPT QUE ESTA RESPONDIENDO A ESA FILA. PORQUE AHORA EL CHECK BOX RESPONDE SIEMPRE AL MISMO DIV CON EL MISMO CONTENIDO
ESPERO RESPUESTA GRACIAS!!