清除UC手机浏览器强制在页面中加的神马搜索关键词链接
JavaScipt
2019-05-23 18:19:47
UC浏览器在页面强制插入JS,强制给关键词加入神马搜索链接,通过以下代码可以轻松清除,基于JQ:
<script>
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){
}
});
}
$(function(){
var pageDATA_ua = window.navigator.userAgent.toLowerCase();
if(pageDATA_ua.indexOf('ucbrowser')>=0){setInterval("CaoNiMaDeUc();",1000);}
})
</script>
亲测代码正常!
六月初字帖坊小程序
你想要的字帖模板及工具,这里都有!
877篇文章
2715人已阅读