Tanto para propietario
como grupo y resto de usuarios..
Porfavor ayuda lo necesito en 2horas, solo tengo que modificar para que aparezca el numero en el total, asi,..
755 por ejemplo ... que eso seria
7 de Todos seleccionados en propietario
5 de Lectura y escritura en grupo
5 de lectura y escritura en resto
Ayuda por favor dejo el código.. y que sea facilito la modificación
Código Javascript:
Ver original
<html> <head> <script> var total=0; function sumar(valor) { total += valor; document.formulario.total.value=total; } function restar(valor) { total-=valor; document.formulario.total.value=total; } </script> </head> <body align="center" bgColor="silver"> <form name=formulario> Por juan Pablo Montoya <br/> TOTAL ES: <input type="text" name="total" value="0"> </form> Selecciona las opciones <table border="2px" align="center"> <tr> <td >Propietario</td> <td> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(4); else restar(4)" value="checkbox"/> Lectura <br/> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(2); else restar(2)" value="checkbox"/> Escritura <br/> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(1); else restar(1)" value="checkbox"/> Ejecución</td> </tr> <tr> <td>Grupo</td> <td> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(4); else restar(4)" value="checkbox"/> Lectura <br/> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(2); else restar(2)" value="checkbox"/> Escritura <br/> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(1); else restar(1)" value="checkbox"/> Ejecución </td> </tr> <tr> <td>Resto</td> <td> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(4); else restar(4)" value="checkbox"/> Lectura <br/> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(2); else restar(2)" value="checkbox"/> Escritura <br/> <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(1); else restar(1)" value="checkbox"/> Ejecución</td> </tr> </table> </body> </html>
Gracias por favor responder q tengo solo 2 horas