私はマークアップをフォローしています:
<ul>
<li>
<a href="#"><img src="sample-big-product.png" alt="" title="" /></a>
<span><a href="#">View Product</a></span>
<ul><li>1,2,3</li></ul>
<h2>Featured product name</h2>
<p>Lorem ipsum dolor sit amet, cosetur adispci elit. Morbi poseure ante porta justo...</p>
</li>
<li>
<a href="#"><img src="sample-big-product.png" alt="" title="" /></a>
<span><a href="#">View Product</a></span>
<ul><li>1,2,3</li></ul>
<h2>Featured product name</h2>
<p>Lorem ipsum dolor sit amet, cosetur adispci elit. Morbi poseure ante porta justo...</p>
</li>
<li>
<a href="#"><img src="sample-big-product.png" alt="" title="" /></a>
<span><a href="#">View Product</a></span>
<h2>Featured product name</h2>
<p>Lorem ipsum dolor sit amet, cosetur adispci elit. Morbi poseure ante porta justo...</p>
</li>
<li>
<a href="#"><img src="sample-big-product.png" alt="" title="" /></a>
<span><a href="#">View Product</a></span>
<h2>Featured product name</h2>
<p>Lorem ipsum dolor sit amet, cosetur adispci elit. Morbi poseure ante porta justo...</p>
</li>
</ul>
これが私のjqueryなので、ここではすべてのLIとすべてのULをターゲットにしています。しかし、私はul liをターゲットにしたいだけで、ul liulliはターゲットにしません。
// get all available UL and LI elements...
var li_elements = container.find("LI").clone();
// remove the current content so that we can rebuild it for the slider...
container.find("UL").remove();
ps明らかに私はそれらに.classを追加することができます。しかし、マークアップを複雑にしたくはありません...