我在博客上有几篇文章,我需要从“p_”类中设置每个帖子的类别。
<article class="some-class p_category-name post">
This is the category: <span id="category"></span>
</article>
这是我的代码,但不起作用(我在 jQ 中不太好):
var category = $("article.post").find("div[class^='p_'], div[class*=' p_']");
$("#category").text(category);
编辑:并非每个帖子都有“p_”类。