我有一个针对_blank
. 我希望表单所在的页面在提交后重新加载。
所以这里有一些示例标记:
<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>
因此,当您提交此表单时,它将POST
在result.php
新窗口或选项卡中。这使表单页面保持原样。我希望重新加载表单页面,或者至少重置所有字段。
我也试过<form onsubmit="location.reload()"...
了,onsubmit="window.location.reload()"
但没有任何改变。
有什么建议么?
(请不要使用jquery)