我有一個單獨的分頁網站,其中我有一個名爲sitecontent的寬度爲4400的div,它包含4個「頁面」。這些頁面從sitecontent的0px開始,1100px的sitecontent,2200px的sitecontent和3300px。單頁面網站,我想在刷新頁面後得到某個點
我使用jquery將de div位置設置爲正確的px,所以我得到正確的文本顯示。按一個鏈接後,我得到例如:
<div id="site-content" style="left: -1100px;">
在我需要刷新頁面的一個頁面,而這個刷新後,我想在頁面上1100px顯示相同的「頁面」,但它開始於0px,主頁。
有什麼辦法可以確保sitecontent始於-1100px的家庭嗎?
由於提前,
乾杯
我現在得到了這一點,但它不工作,我在做什麼錯? '(jQuery(document).ready(){jQuery('#slideshow')。fadeSlideShow(); var hash = window.location.hash; if(hash ==「#page2」)$('#site-content ').css('left','-1100px'); else if(hash ==「#page3」)$('#site-content').css('left','-2200px'); else if (hash ==「#page4」)$('#site-content').css('left','-3300px'); else(hash ==「#page1」)$('#site-content') .css('left','0px');});' – coderjoe