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 name="afterform"><h1>Example: a heading</h1></a>
然后将其作为哈希添加到表单操作中:
<form action="yourpage.html#afterform" ...