Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Formulario sencillo en HTML, CSS y JavaScript

Tiempo de lectura: 2 minutos

A continuación muestro un formulario que consta de campos para el nombre, correo electrónico y mensaje. Cuando el usuario envía el formulario, los valores se muestran usando alerts (puedes modificar la función enviarDatos para realizar alguna otra acción, como enviar los datos a un servidor).

A continuación muestro el código del ejemplo.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<!DOCTYPE html>
<html>
<head>
<style>
/* Estilos generales */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
/* Estilos del formulario */
.contact-form {
max-width: 400px;
margin: 0 auto;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
resize: vertical;
}
.form-group textarea {
height: 100px;
}
.submit-button {
padding: 10px 20px;
background-color: #3a47d5;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.submit-button:hover {
background-color: #1e28cc;
}
</style>
</head>
<body>
<div class="contact-form">
<form id="form">
<div class="form-group">
<label for="name">Nombre:</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="message">Mensaje:</label>
<textarea id="message" required></textarea>
</div>
<button type="submit" class="submit-button">Enviar</button>
</form>
</div>
<script>
// Función para manejar el envío del formulario
function enviarDatos(event) {
event.preventDefault();
// Obtener los valores de los campos del formulario
var nameInput = document.getElementById('name');
var emailInput = document.getElementById('email');
var messageInput = document.getElementById('message');
var name = nameInput.value;
var email = emailInput.value;
var message = messageInput.value;
// Manejo de los campos, en este caso mostramos el contenido con un alert
alert(nameInput.value);
alert(emailInput.value);
alert(messageInput.value);
// Restablecer los campos del formulario
nameInput.value = '';
emailInput.value = '';
messageInput.value = '';
}
// Obtener el elemento del formulario
var form = document.getElementById('form');
// Agregar el evento de envío al formulario
form.addEventListener('submit', enviarDatos);
</script>
</body>
</html>
<!DOCTYPE html> <html> <head> <style> /* Estilos generales */ body { font-family: Arial, sans-serif; margin: 0; padding: 20px; } /* Estilos del formulario */ .contact-form { max-width: 400px; margin: 0 auto; } .form-group { margin-bottom: 20px; } .form-group label { display: block; font-weight: bold; margin-bottom: 5px; } .form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; resize: vertical; } .form-group textarea { height: 100px; } .submit-button { padding: 10px 20px; background-color: #3a47d5; color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } .submit-button:hover { background-color: #1e28cc; } </style> </head> <body> <div class="contact-form"> <form id="form"> <div class="form-group"> <label for="name">Nombre:</label> <input type="text" id="name" required> </div> <div class="form-group"> <label for="email">Email:</label> <input type="email" id="email" required> </div> <div class="form-group"> <label for="message">Mensaje:</label> <textarea id="message" required></textarea> </div> <button type="submit" class="submit-button">Enviar</button> </form> </div> <script> // Función para manejar el envío del formulario function enviarDatos(event) { event.preventDefault(); // Obtener los valores de los campos del formulario var nameInput = document.getElementById('name'); var emailInput = document.getElementById('email'); var messageInput = document.getElementById('message'); var name = nameInput.value; var email = emailInput.value; var message = messageInput.value; // Manejo de los campos, en este caso mostramos el contenido con un alert alert(nameInput.value); alert(emailInput.value); alert(messageInput.value); // Restablecer los campos del formulario nameInput.value = ''; emailInput.value = ''; messageInput.value = ''; } // Obtener el elemento del formulario var form = document.getElementById('form'); // Agregar el evento de envío al formulario form.addEventListener('submit', enviarDatos); </script> </body> </html>
<!DOCTYPE html>
<html>
<head>
  <style>
    /* Estilos generales */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
    }

    /* Estilos del formulario */
    .contact-form {
      max-width: 400px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      resize: vertical;
    }

    .form-group textarea {
      height: 100px;
    }

    .submit-button {
      padding: 10px 20px;
      background-color: #3a47d5;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .submit-button:hover {
      background-color: #1e28cc;
    }
  </style>
</head>
<body>
  <div class="contact-form">
    <form id="form">
      <div class="form-group">
        <label for="name">Nombre:</label>
        <input type="text" id="name" required>
      </div>
      <div class="form-group">
        <label for="email">Email:</label>
        <input type="email" id="email" required>
      </div>
      <div class="form-group">
        <label for="message">Mensaje:</label>
        <textarea id="message" required></textarea>
      </div>
      <button type="submit" class="submit-button">Enviar</button>
    </form>
  </div>

  <script>
    // Función para manejar el envío del formulario
    function enviarDatos(event) {
      event.preventDefault();

      // Obtener los valores de los campos del formulario
      var nameInput = document.getElementById('name');
      var emailInput = document.getElementById('email');
      var messageInput = document.getElementById('message');

      var name = nameInput.value;
      var email = emailInput.value;
      var message = messageInput.value;

      // Manejo de los campos, en este caso mostramos el contenido con un alert
	  alert(nameInput.value);
      alert(emailInput.value);
      alert(messageInput.value);

      // Restablecer los campos del formulario
      nameInput.value = '';
      emailInput.value = '';
      messageInput.value = '';
    }

    // Obtener el elemento del formulario
    var form = document.getElementById('form');

    // Agregar el evento de envío al formulario
    form.addEventListener('submit', enviarDatos);
  </script>
</body>
</html>

Por último muestro el resultado.

Espero que les sirva de ayuda, feliz día!!

2

Deja un comentario