F5
<form id="myForm">
Nombre: <input type="text" name="nombre" id="nombre" required><br>
Email: <input type="email" name="email" id="email" required><br>
Comentarios: <textarea name="comentarios" id="comentarios"></textarea><br>
<button type="button" onclick="sendData()">Enviar</button>
</form>
<script>
function sendData() {
var nombre = document.getElementById("nombre").value;
var email = document.getElementById("email").value;
var comentarios = document.getElementById("comentarios").value;
var data = {
"nombre": nombre,
"email": email,
"comentarios": comentarios
};
var url = "LA_URL_DE_TU_WEB_APP"; // Pega la URL que generaste en Apps Script
fetch(url, {
method: "POST",
mode: "no-cors",
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
body: new URLSearchParams(data)
}).then(response => {
alert("Datos enviados correctamente");
}).catch(error => {
alert("Error al enviar los datos");
});
}
</script>