gpt4 book ai didi

php - 使用 ajax 提交表单后如何避免 URL $_GET 变量?

转载 作者:搜寻专家 更新时间:2023-10-31 21:02:33 24 4
gpt4 key购买 nike

<form id='gbookform'>
<input id='inputname' type='text' name='name' autocomplete='off' placeholder='Your name'>
<input id='inputcon' type='text' name='contact' autocomplete='off' placeholder='Your contact or website'>
<div id='forminfo'></div>
<textarea id='inputstory' name='story' rows='9' placeholder='Your story'></textarea>
<div class="g-recaptcha" data-sitekey="6LfobygTAAAAACxBzCl1FxPe4lALE-669wt6NC7G"></div>
<input id='btnsubmit' type='submit' value='SEND'>
</form>

JS

$("#gbookform").submit(function(e) {
e.preventDefault();
$.ajax({
type: "POST",
url: "gbookajax.php",
data: $(this).serialize(),
success: function(data) {
$('#dataload').load('gbookdata.php');
$('#forminfo').text(data).show();
}
})
})

提交表单后,我看到我的变量写在 url 中:
http://localhost/gbook.php?name=q&contact=q&story=q&g-recaptcha-response=

我怎样才能避免这种情况?

最佳答案

只需指定表单方法:

<form id='gbookform' method='post'>...</form>

关于php - 使用 ajax 提交表单后如何避免 URL $_GET 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39139877/

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