Posted in Javascript onJanuary 06, 2021
最近需要将最近更新的部分内容删除,只要标题中包括百度与360的都给删除了,这样用户就看不到了
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要稍微代码要多点。
js删除指定位置超链接中含有百度与360的标题
- Author -
mdxy-dxy声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@