> li > :first-child,> :not(li):even什么意思?
<div id="accordion">
<h3>Section 1</h3>
<div>
<p>
1t
</p>
</div>
<h3>Section 2</h3>
<div>
<p>
2t
</p>
</div>
<h3>Section 3</h3>
<div>
<p>
3t</p>
</div>
<h3>Section 4</h3>
<div>
<p>
4t
</p>
</div>
</div>
<script>
var $a=$("#accordion").find("> li > :first-child,> :not(li):even");
</script>
jquery
------解决方案--------------------
1,> li > :first-child,
#accordion的子元素li 的子元素的第一个子元素
2,:not(li):even
#accordion下的非li的子元素们的奇数位
1和2是或的关系,