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="#top"> </a> <a href="#top">Back to top</a>
インデックス ページでは機能しますが、サブページでは機能しません。
リンクは常に -site.com/#top
site.com/#top
JavaScript の問題かもしれません (Fancybox など)。
更新:修正済み -<base href="site.com/" />で<head>
<base href="site.com/" />
<head>
こんなはずじゃないの?(名前の # なし)
<a name="top"> </a> <a href="#top">Back to top</a>
または、次のようにすることもできます。
<div id="top">Some content</div> <a href="#top">Back to top</a>