gpt4 book ai didi

php - 自动滚动到页面底部

转载 作者:行者123 更新时间:2023-12-02 06:43:33 26 4
gpt4 key购买 nike

我的网页底部有一个表单,当我提交表单并且页面刷新时,我希望该页面自动定位在页面底部,以便我再次看到该表单。是否可以在不使用任何 javascript 的情况下仅使用 php 来实现此目的。

最佳答案

是的。您可以使用 name attribute 执行此操作一个链接。

在您页面的底部有这段代码:

<!-- 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');
?>

提交表单后重定向到 http://yoururl.com/script.php#bottomOfThePage

关于php - 自动滚动到页面底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4270827/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com