搜索一下,你就知道

< 返回
当前位置:
打印

移除Nitropack页脚标志

目录

Nitropack免费版会强制在页脚加入标志和Nitropack链接,可以用以下代码移除。


$(document).ready(function(){
setTimeout(function(){
//var tag_new = jQuery("template").eq(38).attr("id");
var tag_new = $("template").last().attr("id");
console.log(tag_new);
//alert(tag_new);
$("#" + tag_new).css("display", "none");
$("#" + tag_new).next().next().css("display", "none");
}, 100);
});

OR

<script>
document.addEventListener("DOMContentLoaded", function(){
let divc = document.querySelectorAll('div[style]');
for (let i = 0, len = divc.length; i < len; i++) {
let actdisplay = window.getComputedStyle(divc[i], null).display;
let actclear = window.getComputedStyle(divc[i], null).clear;

if(actdisplay == 'block' && actclear == 'both') {
divc[i].remove();
}
}
});
</script>

登录

还没有账户?

开始输入你要找的文章。
商店
0 项目 购物车