此问题在此处已有答案:
What is AJAX and how does it work? [duplicate](1个答案)
How to submit an HTML form without redirection(13个回答)
6年前关闭。
我有一个非常简单的HTML表单,我已经创建了一个联系页面。我想知道是否有可能禁用/避免页面重定向时发生的形式被发送,但仍然允许提交的形式(显然)。我基本上对php的知识几乎为零,我没有创建php方面(参见表单操作)。这里的任何帮助都非常感谢。
<form action="" method="post" class="flex flex--column">
<input type="hidden" name="toEmail" value=""/>
<input type="text" name="name" placeholder="Name*" required><br>
<input type="email" name="email" placeholder="Email*" required><br>
<input type="text" name="phone" placeholder="Phone"><br>
<input type="text" name="message" placeholder="Message*" required><br>
<input type="submit" value="Submit" class="submit">
</form>
字符串
1条答案
按热度按时间lnxxn5zx1#
配置表单以发布到隐藏的iframe,如下所述:How do you post to an iframe?。重定向仍然会发生,但它将在iframe内,因此对用户不可见。这是一个有点黑客,并不是最好的方式来做的事情,但它确实工作。