How can I refresh a form page after the form submits to _blank?
问题 I have an HTML form which targets _blank . I would like the page that form is on to reload after submitting. So here's some sample markup: <form method="POST" action="result.php" target="_blank"> <label for="name">Name:</label> <input type="text" name="name" /> <label for="email">Email:</label> <input type="email" name="email" /> <input type="submit" value="submit" /> </form> So when you submit this form it will POST to result.php in a new window or tab. This leaves the form page as is. I