在浏览器运行JS脚本实现博客园文章批量删除

$('tr').each(function(){
        if($(this).attr('id')!=null){
            var s = $(this).attr('id').slice(9);
            console.info("正在删除:"+s);
            deletePost(s);
        }
    });
    window.location.reload();

img_356742c43c281578df9c20f80ce00a6f.jpe