js删除指定位置超链接中含有百度与360的标题

时间:2021-12-11 16:47:36

最近需要将最近更新的部分内容删除,只要标题中包括百度与360的都给删除了,这样用户就看不到了

?
1
2
3
4
5
6
7
8
9
10
11
function notxt(){
'删除指定位置超链接中含有百度与360的标题
    var notext = ['百度','360'];
    $('#news ul li').each(function(){
        var mytext = $(this).find('a').text();
        for(var n=0; n<notext.length; n++) {
            if(mytext.indexOf(notext[n]) != -1){
                $(this).remove();
            }   
    }
    })

将news ul li换成自己的就可以了,这个代码是基于jquey的,原生js要稍微代码要多点。