我正在重新列表li中的相關文章的列表,並且我希望刪除標籤和span之間的」 - 「而不會混淆原始內容。頁面(鏈接)上,我必須使用jQuery,我不知道是否有這樣做的一個簡單的方法jQuery if list item contains'' - 「.remove()?
<div class="related-articles card">
<h3 class="h2">
<i class="fa fa-book text-brand-primary-dark"></i> Related Articles
</h3>
<ul>
<li>
<a href="http://example.com/article-1">Title One</a>
-
<span> Some Related Preview Text... </span>
</li>
<li>
<a href="http://example.com/article-2">Title Two</a>
-
<span> Some Related Preview Text... </span>
</li>
<li>
<a href="http://example.com/article-3">Title Three</a>
-
<span> Some RelatedPreview Text... </span>
</li>
</ul>
納倫的回答是bette雖然! –