hola,
de momento lo estoy probando así
Código:
<html>
<head>
<title>Lista de Checkboxes</title>
<script>
var num_checks = 3;
function alertaChecked(){
alert(document.form.miCheck.checked)
}
function alertaValue(){
alert(document.form.miCheck.value)
}
function metodoClick(){
document.form.miCheck.click()
}
function avisar(){
var activos = '';
for(x = 0; x < num_checks; x++){
var checkis = document.getElementById("C" + x);
if(checkis.checked==true){
activos = activos + x + " ";
alert("se detecta" + x + "activo ");
}
}
var resultado = document.getElementById("res");
resultado.innerHTML = activos;
}
</script>
</head>
<body>
uno<input type="checkbox" onClick="avisar();" id="C1">
dos <input type="checkbox" onClick="avisar();" id="C2">
tres <input type="checkbox" onClick="avisar();" id="C3">
<br>
Marcadas: <input type="text" id="res" name="res"></input>
</body>
</html>
Pero ni me hace caso ni entra en el condicional :S
Que falla?
Por favor. He gastado mucho tiempo en la web de mi firma y tengo que entregar esto (y unos ejemplillos más) para mañana... (o muero)
Una ayudita..