使用 jQuery,是否有更短的方法来编写以下内容?
$(this).parent().prev().children('.expand-rss-link').css({border:'solid 1px pink'});
以下不起作用...
$(this).closest('.expand-rss-link').css({border:'solid 1px pink'});
不起作用。
我的 HTML 源代码如下所示...
<div class="career-paths">
<div class="career-paths-head">
<h3>Agribusiness</h3>
<a href="#" class="expand-rss-link">View All</a>
<hr>
</div>
<div id="agribusiness-intern" class="expand-rss-section">
<p>content</p>
</div>
</div>
$(this) 代表<p>content</p>
面积。
感谢您的建议