This question already has answers here:
Clearing _POST array fully
                                
                                    (6个答案)
                                
                        
                                5个月前关闭。
            
                    
*请注意,我对PHP和js的经验很少,即使我可能需要使用它们,在实现这些代码时也可能需要一些额外的指导

我最近一直在处理联系表单,但一切进展顺利,除了我不知道如何刷新页面,或者至少不知道要重置自身的输入值。

现在,PHP有一个“回声”的东西,它告诉表单是否已提交。但是我总是可以回到页面,而输入值仍然在那里。我要他们清除。

<form method="post" action="contactform.php">

  <p class="contact-top">Name:
    <br /><input name="name" /></p>

  <p>Your email:
    <br /><input name="email" /></p>

  <!-- Important: if you add any fields to this page, you will also need to update the php script -->

  <p class="antispam">Leave this empty:
    <br /><input name="url" /></p>

  <p>Your message:
    <br /><textarea name="message" rows="10" cols="50"></textarea></p>

  <p><input type="submit" value="Send" /></p>

</form>

最佳答案

<input type="reset" value="Reset">


如今,这种事情是用JS制作的,您可以在前端中添加一个验证层,但这是旧的html方式。

关于javascript - 按下联系表单中的按钮后,如何重新加载页面并清除输入值? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57497590/

10-13 01:10