分类 技术折腾 下的文章
nth-child(n),n 可以是数字、关键词或公式。选择器匹配属于其父元素的第N个子元素,不论元素的类型。
<h3>序号写法:</h3>
li:nth-child(3){background:orange;}/把第3个LI的背景设为橙色/
<h3>倍数写法:</h3>
li:nth-child(3n){background:orange;}/把第3、第6、第9、…、所有3的倍数的LI的背景设为橙色/
<h3>倍数分组匹配:</h3>
li:nth-child(3n+1){background:orange;}/匹配第1、第4、第7、…、每3个为一组的第1个LI/
li:nth-child(3n+5){background:orange;}/匹配第5、第8、第11、…、从第5个开始每3个为一组的第1个LI/
li:nth-child(5n-1){background:orange;}/匹配第5-1=4、第10-1=9、…、第5的倍数减1个LI/
<h3>隔三行设置颜色</h3>
$("tr:nth-child(3n)").css("background","#eee");
<h3>隔两行换一个颜色</h3>
$("tr:nth-child(2n)").css("background","#eee");
<h3>每隔三行的第二行<span style="color: #ff0000;">和</span>第三行设置颜色</h3>
<!--{if ($_G['forum']['threadtypes'] && $_G'forum'['listable']) || count($_G'forum'['types'])> 0}-->
<p style="text-align: left;">
<ul id="thread_types" class="ttp bm cl">
<!--{hook/forumdisplay_threadtype_inner}-->
<li id="ttp_all" {if !$_GET[ 'typeid'] && !$_GET[ 'sortid']}class="xw1 a" {/if}>
<a href="forum.php?mod=forumdisplay&fid=$_G[fid]{if $_G'forum'['defaultshow']}&filter=sortall&sortall=1{/if}{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}">{lang forum_viewall}</a></li>
<!--{if $_G'forum'}-->
<!--{loop $_G['forum']['threadtypes']['types'] $id $name}-->
<!--{if $_GET['typeid']==$ id}-->
<li class="xw1 a">
<a href="forum.php?mod=forumdisplay&fid=$_G[fid]{if $_GET['sortid']}&filter=sortid&sortid=$_GET['sortid']{/if}{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}" ><!--{if $_Gforumicons 'threadtypes'==2 }-->
<img class="vm" src="$_G[forum][threadtypes][icons][$id]" alt="">
<!--{/if}-->$name<!--{if $showthreadclasscounttypeid[$id]</span>
<!--{/if}--></a>
</li>
<!--{else}-->
<li>
<a href="forum.php?mod=forumdisplay&fid=$_G[fid]&filter=typeid&typeid=$id$forumdisplayadd[typeid]{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}" ><!--{if $_Gforumicons 'threadtypes'==2 }-->
<img class="vm" src="$_G[forum][threadtypes][icons][$id]" alt="">
<!--{/if}-->$name<!--{if $showthreadclasscounttypeid[$id]</span>
<!--{/if}--></a>
</li>
<!--{/if}-->
<!--{/loop}-->
<!--{/if}-->
<!--{if $_G'forum'}-->
<!--{if $_G'forum'}-->
<li>
<span class="pipe">|</span></li>
<!--{/if}-->
<!--{loop $_G['forum']['threadsorts']['types'] $id $name}-->
<!--{if $_GET['sortid']==$ id}-->
<li class="xw1 a">
<a href="forum.php?mod=forumdisplay&fid=$_G[fid]{if $_GET['typeid']}&filter=typeid&typeid=$_GET['typeid']{/if}{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}" >$name<!--{if $showthreadclasscount[sortid][$id]}-->
<span class="xg1 num">$showthreadclasscount[sortid][$id]</span>
<!--{/if}--></a>
</li>
<!--{else}-->
<li>
<a href="forum.php?mod=forumdisplay&fid=$_G[fid]&filter=sortid&sortid=$id$forumdisplayadd[sortid]{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}" >$name<!--{if $showthreadclasscount[sortid][$id]}-->
<span class="xg1 num">$showthreadclasscount[sortid][$id]</span>
<!--{/if}--></a>
</li>
<!--{/if}-->
<!--{/loop}-->
<!--{/if}-->
<!--{hook/forumdisplay_filter_extra}--></ul>
<script type="text/javascript">showTypes('thread_types');</script>
<!--{/if}-->