1. 程式人生 > >清除UC手機瀏覽器強制在頁面中加入的關鍵詞連結

清除UC手機瀏覽器強制在頁面中加入的關鍵詞連結

//清除UC手機瀏覽器強制在頁面中加入的關鍵詞連結

function CaoNiMaDeUc(){

$("a").each(function(index, element) {

try{

var thishref=$(this).attr("href");

var thisText=$(this).html();

if(thishref.indexOf("uc.cn")>=0){

$(this).replaceWith(thisText);

}

}

catch(e){

}

});

$("script").each(function(index, element) {

try{

var thissrc=$(this).attr("src");

if(thissrc.indexOf("ucbrowser")>=0){

$(this).remove();

}

}

catch(e){

}

});

}