Control TEXTAREA

PROBLEMA

  1. Confeccionar una página de visitas a un sitio, solicitar ingresar el nombre de una persona, su mail y los comentarios (TEXTAREA). Mostrar luego llamando a la función alert los datos ingresados.
Solución
Problema 1.


<html>
<head>
</head>
<body>

<script type="text/javascript">
  function verificar()
  {
    var nombre=document.getElementById('nombre').value;
    var mail=document.getElementById('mail').value;
    var comentarios=document.getElementById('comentarios').value;
    alert(nombre+'\n'+mail+'\n'+comentarios);
  }
</script>

<form>
Ingrese nombre:
<input type="text" id="nombre"><br>
Ingrese mail:
<input type="text" id="mail"><br>
Comentarios:<br>
<textarea id="comentarios" rows="20" cols="100"></textarea><br>
<input type="button" value="confirmar" onClick="verificar()">
</form>

</body>
</html>


Retornar al menu