我有这个脚本使用jquery按类删除重复元素,有没有办法用纯javascript做到这一点?这是我的代码
<script >$(document).ready(function() {
var seen2 = {};
$('.listofarticlescolor').each(function() {
var txt2 = $(this).text();
if (seen2[txt2])
$(this).closest('.category').remove();
else
seen2[txt2] = true;
});
});
</script>
答案 0 :(得分:0)
尝试使用此代码,首先必须转换数组中的节点列表,然后执行与您已完成的操作类似的操作。
for n in range(len(result)):
if "'" in result[n][2:3]:
result[n][2:3].replace("'", "")