0
我在建立一個WordPress用戶站點,希望用戶在第一次加載頁面時能夠面對頁面的特定部分。我不希望用戶登陸index.php中的代碼頂部。例如:在某個位置加載頁面
<body>
<div id="firstcontent"></div>
<div id="header"></div>
<div id="secondcontent"></div>
</body>
在這種情況下,我想在加載頁面時顯示header和secondcontent div。如果你然後向上滾動,你會選擇「firstcontent」。這可能嗎?
使用錨?通過錨點,我的意思是使用URL中的「#」並用錨點標記代碼。像這樣的問題應該得到你想要的: http://stackoverflow.com/questions/8079575/use-anchor-after-post-form-submission – Coda
有幾個選項,但可能是最常見的解決方案:Anchor標籤。 – MackieeE