我有这个DOM,我想像过滤器一样根据h5标签中包含的文本删除li。
<div class="total">
<ul>
<li>
<h5>this super heroe is super cool: Clark Kent</h5>
</li>
</ul>
<ul>
<li>
<h5>I always wanted to be Batman</h5>
</li>
</ul>
<ul>
<li>
<h5>Somedays I will be transform as Spiderman </h5>
</li>
</ul>
<ul>
<li>
<h5>This women is incredible Catwoman</h5>
</li>
</ul>
<li>
<ul>
<h5>The worst character is Joker</h5>
</ul>
</li>
<ul>
<li>
<h5>Someone knows about Green Lantern </h5>
</li>
</ul>
</div>
我需要根据字符串将过滤器放入此数组中,该数组没有昏迷
let appDataTab = ["Clark Kent Catwoman Joker"]
我的目标是删除所有李,它的h5不满足“克拉克肯特”,“猫女”和“小丑”,因为你可以看到appDataTab内容这些字符串没有分离。
MMTTMM
饮歌长啸
相关分类