因此,我需要删除id
与数组中的id
相匹配的链接。代码如下:
for(let i = 0; i < allyList.length; i++) {
if ( $.inArray(allyList[i], allyArray) > -1 ) {
// In this if statement I'm checking if id's from allyList matches id's allyArray
}
}
上面的代码^可以正常工作。它检查ID是否匹配。但是现在我有了这个链接:
<a href="/join-alliance/{{this.title}}" id="{{this._id}}" class="btn btn-success join">Join</a>
这些链接id
与allyList
id完全相同。我需要以某种方式将这些链接放入数组,然后检查上面的if语句是否链接id's
与allyList
中的链接相匹配。如果id
匹配,我需要删除该链接。
答案 0 :(得分:0)
如果我正确理解,则链接allyArray中具有ID的ID需要从dom中删除。
$(".join").each(function() {
if(allyArray.indexOf($(this).attr("id")) > -1)
$(this).remove();
});