2016-07-31 11:51
利用JavaScript代码全自动删除QQ空间说说
操作流程:
1、打开QQ空间:http://user.qzone.qq.com/{你的QQ号}/311;
2、右键 -> 审查元素 -> Console (F12 -> Console);
3、把以下JS代码拷贝到Console;
function yes(){document.querySelector(‘.qz_dialog_layer_btn’).click();setTimeout(“del()”, 1000);}
function del(){document.querySelector(‘.app_canvas_frame’).contentDocument.querySelector(‘.del_btn’).click();setTimeout(“yes()”,1000);}
del();
4、Enter回车执行即可。
原文作者:丁春华(http://www.dingchunhua.name/diannaojiqiao/1222.html)