我有一个jquery手风琴,我想用第n个子对象为其分配奇数/偶数背景。
结构如下:
<div class="jobmenu accordion">
<a>
<section>
<article><img.....></article>
<article>Item 1 name</article>
<article>123</article>
</section>
</a>
<div>
<table class="itemTable">
<thead>...</thead>
<tbody>...</tbody>
</table>
</div>
<a>
<section>
<article><img.....></article>
<article>Item 2 name</article>
<article>432</article>
</section>
</a>
<div>
<table class="itemTable">
<thead>...</thead>
<tbody>...</tbody>
</table>
</div>
</div>
第n个孩子在为tbody中的trs分配奇数和偶数值的表上工作得很好,但我想对手风琴也这样做。所有的文章都以设置的宽度正常工作,以便第n个子项在可折叠列表中具有统一的外观,但每个"a"都分配给奇数样式。除非我在php中实际添加一个类,但这违背了干净css设计的要点。
css是:
.jobmenu a {
height:40px;
}
.jobmenu a:nth-child(even){
background: #CCC;
font-size: 12px;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon imageglossyback.gif*/
width: auto;
padding: 4px 0;
padding-left: 10px;
padding-right:10px;
text-decoration: none;
cursor:pointer;
}
.jobmenu a:nth-child(odd){
background: #999;
font-size: 12px;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon imageglossyback.gif*/
width: auto;
padding: 4px 0;
padding-left: 10px;
padding-right:10px;
text-decoration: none;
cursor:pointer;
}
.jobmenu article:nth-child(1)
{
width:350px; margin-left:15px; text-wrap:normal; float:left;
}
.jobmenu article:nth-child(2)
{
width:100px; float:left;
}
.jobmenu article:nth-child(3)
{
width:200px; float:left;
}
我想这是因为a在奇数位置,而div在偶数位置。有办法绕过这个吗?
.jobmenu a:nth-child(4n+1){
/*style*/
}
我试过了,效果很好。