Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
验证和提交后重定向表单的最佳方式是什么?表单不是插件,它是主题的一部分。
a)这是表单操作代码:
<form action="" id="pro_form" enctype="multipart/form-data" method="post">
b)这是验证字符串:
<input type="submit" onclick="return validation()" value="Submit" >
任何帮助,将不胜感激。谢谢!
彼得
我不确定这是否是您要求的,但我认为最好的方法是使用 javascript,如下所示:
echo '<script type="text/javascript">window.location ="NewLocation";</script>';
将此代码放在表单从验证返回之后。