這一直在困擾着我好幾天了。 。 。 所以我有這樣的佈局jQuery一次顯示5個列表
<div class='body1'>
<ul id='list1'>
<li class='heading'>Name</li>
<li>Name 1</li>
<li>Name 2</li>
<li>Name 3</li>
</ul>
</div>
<div class='body1'>
<ul id='list2'>
<li class='heading'>Name</li>
<li>Name 1</li>
<li>Name 2</li>
<li>Name 3</li>
</ul>
</div>
<div class='body1'>
<ul id='list3'>
<li class='heading'>Name</li>
<li>Name 1</li>
<li>Name 2</li>
<li>Name 3</li>
</ul>
</div>
,這是我的功能
function changePage(){
var limit = 5; //number of list to show
var pages = $(".body1");
var pageul = $(".body1 ul");
if ($.cookie('pg') == null || $.cookie('pg') >= pages.length){
$.cookie('pg', 0); // just the cookie to retain current div on display when refresh
}
var c = $.cookie('pg');
$(pages).hide(); // hide all divs
$(pageul).find('li').hide(); // hide all list inside divs
$(pages[c]).fadeIn(2000); //fade in the page with index cookie
$(pages[c]).find('li:lt('+limit+')').fadeIn(2000); //fadein the lists
c++; //increment
$.cookie('pg', c); //then store as cookie
window.setTimeout(changePage, 10000); //run every 10 sec
}
什麼即時試圖做的是顯示在10秒間隔循環的所有div,但如果一個div有超過極限列表然後通過每10秒顯示5(限制)來分割列表,並且當到達最後一個時,然後繼續循環div。
我在正確的軌道上嗎?或者我需要一個不同的方法?
IM相當新的jQuery的所以請多多包涵
'pageul'定義在哪裏? – 2013-05-11 13:28:44
哎呀抱歉編輯:D – Cyr 2013-05-11 13:31:01
jQuery本身不支持cookies。你是否在使用外部資源? – 2013-05-11 13:44:36