不要問爲什麼,但我需要添加類斑馬到<li>
元素旁邊的內容。這是據我已經得到了,但我不知道該怎麼計算中使用:如何爲每個4th-1元素添加一個類?
$("li").each(function(index){
if(index % ??? == 0) { // <-- not sure what to put here
}
});
<ul>
<li></li>
<li></li>
<li></li> <!-- add the zebra class here -->
<li></li>
<li></li>
<li></li>
<li></li> <!-- add the zebra class here -->
<li></li>
<li></li>
<li></li>
<li></li> <!-- add the zebra class here -->
<li></li>
</ul>
誰能幫助?
普通斑馬或只是對那些有內容?請詳細說明你的問題! – 2010-06-18 09:24:25
您顯示3,4,4。這是3或4?什麼是索引?請記住,模數是餘數。所以,如果3%1 = 2,3%2 = 1,3%3 = 0 – 2010-06-18 09:25:59
就在哪裏有評論。索引2處的第一斑馬,然後是3索引後面的斑馬 – chchrist 2010-06-18 09:26:51