Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/10/2011, 10:04
Avatar de jrevilla
jrevilla
 
Fecha de Ingreso: septiembre-2011
Ubicación: Lima, Peru, Peru
Mensajes: 51
Antigüedad: 12 años, 7 meses
Puntos: 2
Respuesta: boton regresar

quizas esto te ayude muchacho =)

Código Javascript:
Ver original
  1. <head>
  2. <script>
  3. function desactiva(enlace)
  4. {
  5. enlace.disabled='disabled';
  6. }
  7. </script>
  8. </head>
  9. <body>
  10. <input name="" type="button" onClick="desactiva(this)" value="Pulsa el boton">
  11. </body>

pero modelandolo al tuyo seria algo parecido a esto:

Código Javascript:
Ver original
  1. <head>
  2. <script>
  3. function desactiva(enlace)
  4. {
  5. enlace.disabled='disabled';
  6. }
  7. </script>
  8. </head>
  9. <body>
  10. <form action="" method="" >
  11. <input name="" type="submit" onClick="desactiva(this)" value="Pulsa el boton">
  12. </form>
  13. </body>