使用 CSS 和下面的例子,有没有办法只选择<p>
后面跟着 's 的<ul>
's?
如果不是,什么是 jQuery 选择器,还是需要if
声明?
<p>Hello there.</p>
<p>Select this para!</p>
<ul>
<li>list item</li>
</ul>
<ul>
<li>don't select this list! :)</li>
</ul>
<p>And don't select this paragraph! :)</p>