gpt4 book ai didi

javascript - 如何使用 Fetch API 从表单中检索和发送数据?

转载 作者:行者123 更新时间:2023-11-28 14:48:43 24 4
gpt4 key购买 nike

我有 html 表单:

<form action="file.php" method="post">
<input name="formName" type="text" />
<input name="formEmail" type="email" />
<input name="formSubmit" type="submit" value="Submit Me!" />
</form>

那么如何使用 Fetch API 来获取这些值并使用 ajax 将它们发送到 file.php 文件?

最佳答案

使用Fetch API

function submitForm(e, form){
e.preventDefault();

fetch('file.php', {
method: 'post',
body: JSON.stringify({name: form.formName.value, email: form.formEmail.value})
}).then(function(response) {
return response.json();
}).then(function(data) {
//Success code goes here
alert('form submited')
}).catch(function(err) {
//Failure
alert('Error')
});
}
<form action="file.php" method="post" onsubmit="submitForm(event, this)">
<input name="formName" type="text" />
<input name="formEmail" type="email" />
<input name="formSubmit" type="submit" value="Submit Me!" />
</form>

关于javascript - 如何使用 Fetch API 从表单中检索和发送数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45370120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com