12/09/2005, 14:27
|
| | | Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 19 años, 10 meses Puntos: 9 | |
Es mas facil que si fueran de diferente nombre, el tema consiste en hacer un bucle que recorra todos los checkbox llamados del mismo modo, y asignarles checked=true. <html> <head> <script> function marcar(radio) { for(var n=0;n<radio.length;n++){radio[n].checked=true} } </script> </head> <body> <form name="sol"> <input name="re"type="checkbox"value="a"> <input name="re"type="checkbox"value="b"> <input name="re"type="checkbox"value="c"> <input name="re"type="checkbox"value="d"> <input name="re"type="checkbox"value="e"> <inputt ype="button"value="Marcar todos"onclick="marcar(document.sol.re)"> </form> </body> </html>
Última edición por programeitor; 13/09/2005 a las 07:16 |