Advertising in the garden deleted blog post

--- --- restore content begins

Blog Bowen Park remove ads

Find the corresponding ad press f12 id js remove elements can be used. Enter the following code in the HTML home page:

<script type="text/javascript" >
/* 鼠标特效 */ var a_idx = 0; jQuery(document).ready(function($) { $("body").click(function(e) { var a = new Array("富强", "民主", "文明", "和谐", "自由", "平等", "公正" ,"法治", "爱国", "敬业", "诚信", "友善"); var $i = $("<span/>").text(a[a_idx]); a_idx = (a_idx + 1) % a.length; var x = e.pageX, y = e.pageY; $i.css({ "z-index": 999999999999999999999999999999999999999999999999999999999999999999999, "top": y - 20, "left": x, "position": "absolute", "font-weight": "bold", "color": "#ff6651" }); $("body").append($i); $i.animate({ "top": y - 180, "opacity": 0 }, 1500, function() { $i.remove(); }); }); }); 

/*删除默认导航栏的几个li标签*/
$("#nav ul li:eq(0)").remove();
$("#nav ul li:eq(2)").remove();
$("#nav ul li:eq(3)").remove();
$("#nav ul li:eq(4)").remove();


/*去除博客底部的广告*/
$("#cnblogs_c1").remove();
$("#cnblogs_c2").remove();
$("#ad_t2").remove();
$("#under_post_news").remove();
$("#google_image_div").remove();
$("#under_post_kb").remove();

</script>

Note: It may be different for each person blog corresponding label name (due chose a different theme templates) similar to the code

Results are as follows

Before removal

--- end --- restore content

# Blog Bowen Park removal of advertising
to find the corresponding ad press f12 js remove elements with the id can be. Enter the following code in the HTML home page:

<script type="text/javascript" >
/* 鼠标特效 */ var a_idx = 0; jQuery(document).ready(function($) { $("body").click(function(e) { var a = new Array("富强", "民主", "文明", "和谐", "自由", "平等", "公正" ,"法治", "爱国", "敬业", "诚信", "友善"); var $i = $("<span/>").text(a[a_idx]); a_idx = (a_idx + 1) % a.length; var x = e.pageX, y = e.pageY; $i.css({ "z-index": 999999999999999999999999999999999999999999999999999999999999999999999, "top": y - 20, "left": x, "position": "absolute", "font-weight": "bold", "color": "#ff6651" }); $("body").append($i); $i.animate({ "top": y - 180, "opacity": 0 }, 1500, function() { $i.remove(); }); }); }); 

/*删除默认导航栏的几个li标签*/
$("#nav ul li:eq(0)").remove();
$("#nav ul li:eq(2)").remove();
$("#nav ul li:eq(3)").remove();
$("#nav ul li:eq(4)").remove();


/*去除博客底部的广告*/
$("#cnblogs_c1").remove();
$("#cnblogs_c2").remove();
$("#ad_t2").remove();
$("#under_post_news").remove();
$("#google_image_div").remove();
$("#under_post_kb").remove();

</script>

Note: It may be different for each person blog corresponding label name (due chose a different theme templates) similar to the code

Results are as follows

Remove before

removing the

Guess you like

Origin www.cnblogs.com/realwuxiong/p/11365414.html