当用户点击PHP链接然后使用PHP或JQuery(如HTML锚点)将页面跳转到同一页面上的某个位置时,是否有办法重新加载PHP页面?
以下是PHP链接。
<a href="../index.php?uid=' . $user_id . '&view=member">' . $user_name . '</a>
答案 0 :(得分:3)
您可以使用哈希链接,例如:
<a href="../index.php?uid='.$user_id.'&view=member#section">'.$user_name.'</a>
如果在该页面中您有任何ID,请说:
<div id="section">
然后它向下滚动到那里,不需要jQuery或JavaScript ......这是正常的浏览器行为。 You can read more about it in the HTML4 spec here
例如,这里是您正在阅读的答案的链接,请在访问时看到自动滚动? :)
https://stackoverflow.com/questions/3163053#3163061