删除博客园的博客

看到的挺厉害一个人的博客

先把博客园的管理换成旧版

 

var jq = document.createElement('script');
jq.src = "https://code.jquery.com/jquery-3.3.1.min.js";  /* Include any online jquery library you need */
document.getElementsByTagName('head')[0].appendChild(jq);
$('tr').each(function(){
        if($(this).attr('id')!=null){
            var s = $(this).attr('id').slice(9);
            console.info("正在删除:"+s);
            deletePost(s);
        }
    var realConfirm=window.confirm;
    window.confirm=function(){
        window.confirm=realConfirm;
        return true;
        };
    });
window.location.reload();
发布了152 篇原创文章 · 获赞 165 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/weixin_43900387/article/details/105036829