我整天在stackoverflow上搜索正确的答案,也找不到帮助我的东西。
有一个像这样的简单形式:
<form action="process.php" method="post">
<input type="text" name="email">
<input type="password" name="password" id="password">
<button value="Login" type="submit" name="submit" onclick="formhash(this.form, this.form.password);"></button>
</form>
当前:提交表单重定向到 process.php,显示成功消息并在一段时间后重定向到另一个页面。
我需要的是:而不是重定向到 process.php 模式对话框应该打开做工作并显示成功消息,一段时间后关闭对话框,然后刷新实际的一面。
欢迎任何帮助!