博客园批量删除博客

访问 https://i.cnblogs.com/settings 并 切换到旧版 ,控制台执行

$('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();
posted @ 2020-12-08 21:34  carryhjr  阅读(141)  评论(0编辑  收藏  举报