是.您可以使用链接的name属性执行此操作.
在页面底部有这样的代码:
<!-- The page with the form (script.php) -->
<?php
//Other page content
?>
<a name="bottomOFThePage"></a>
<?php
//Your form
?>
<!--
PHP page that handles the form submit
Use the header code from netcoder's answer below
-->
<?php
//Process your form
header('Location: script.php#bottomOfPage');
?>
Run Code Online (Sandbox Code Playgroud)
将表单提交到http://yoururl.com/script.php#bottomOfThePage后重定向