Ver Mensaje Individual
  #4 (permalink)  
Antiguo 22/04/2013, 13:58
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años
Puntos: 839
Respuesta: Cómo crear casilla de escritura

Podría ser:
Código Javascript:
Ver original
  1. function valor(campo) {
  2.     alert(campo.value);
  3. }
Código HTML:
Ver original
  1. <form method="get" id="formulario" onsubmit="valor(this.campo);return false">
  2.     <div>
  3.         <input type="text" name="campo" />
  4.         <button type="submit">Ingresar</button>
  5.     </div>
  6. </form>
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.