• 批量删除微博的js代码


    清空微博,网上找了一段js代码,试了下,还行。

    var fileref=document.createElement('script')
    fileref.setAttribute("type","text/javascript")
    fileref.setAttribute("src", 'http://ajax.microsoft.com/ajax/jquery/jquery-1.4.min.js')
    document.getElementsByTagName("head")[0].appendChild(fileref);
    
    function AutoDelWeiBo()
    {
    
    var list = $("a[title='删除此条微博']");
    for(var i =0;i<list.length;i++){
    list[i].click();
    }
    var dels = $("a[node-type='ok']");
    for(var i =0 ;i<dels.length;i++){
    dels[i].click();
    }
    
    window.location.reload();
    };
    window.setInterval("AutoDelWeiBo()",1500);
    

      或者试试这段脚本

    // ==UserScript==
    // @name                新浪微博一键清空
    // @namespace           https://crane-yuan.github.io
    // @version             0.4
    // @description         清空您发过的所有微博
    // @author              crane-yuan
    // @match               http://weibo.com/p/*
    // @require             http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.7.2.js
    // @grant               none
    // @compatible         firefox 测试通过
    // @compatible         chrome 测试通过
    // @compatible         opera 未测试
    // @compatible         safari 未测试
    // ==/UserScript==
    
    window.setInterval(function(){
        $('a[action-type="fl_menu"]')[0].click();
        $('a[title="删除此条微博"]')[0].click();
        $('a[action-type="ok"]')[0].click();
    },500)
    View Code
  • 相关阅读:
    成为一个会思考的学习者
    我的第4篇博客
    我的第3篇博客
    第2次作业
    第一次作业:大学,人生的另一个新的开始
    第四次作业
    第三次作业
    第二次作业
    作为大一新生的感悟
    第四次作业
  • 原文地址:https://www.cnblogs.com/feedback/p/6355353.html
Copyright © 2020-2023  润新知