¿Cómo especificar la página de respuesta después de enviar el formulario usando HTML5?

En este artículo, especificaremos la página de respuesta después de enviar el formulario utilizando el atributo de acción en el elemento <form> del documento. Esta propiedad se utiliza para especificar la página URL o el destino de los datos del formulario que se enviarán al servidor después de enviar el formulario. Se puede utilizar en el elemento «formulario».

Sintaxis:

<form action="URL">

Ejemplo:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to Specify where to display the
        response that is received after 
        submitting the form using HTML5?
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        How to Specify where to display the
        response that is received after 
        submitting the form using HTML5?
    </h2>
  
    <form action="test.php" method="post" id="users">
  
        <label for="username">
            Username:
        </label>
  
        <input type="text" name="username" id="Username">
  
        <br>
  
        <label for="password">
            Password:
        </label>
        <input type="password" name="password">
    </form>
    <br>
  
    <button onclick="myGeeks()">
        Submit
    </button>
    <br><br>
  
    <b>
        After Submitting the form-data will sent
        to the "test.php" page on the server.
    </b>
</body>
  
</html>

Producción :

Los navegadores compatibles se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *