优化博客系统
今天,花了点时间优化这个博客!
1、以前163博客的文章,有些图片显示不了了,在页面加完后要删除掉!三行代码搞定!
$('img').each(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
$(this).remove();
}
});2、由于空间不支持ssl,家里的路由器会在页面插入广告,极度恶心,所以要自动删除广告!
$(function(){
//delete ad
var ft = $("footer:last");
if(ft.size() == 0){
$("#adBlockJs").after('<footer class="display:none;"></footer>');
ft = $("footer:last");
}
setTimeout(function(){
ft.nextAll().remove();
},80);
});好了,不搞博客了,要做大事了!
