Skip to content

Instantly share code, notes, and snippets.

@phoenixg
Forked from justjavac/getAddressList_QQ.js
Last active July 1, 2019 10:50
Show Gist options
  • Save phoenixg/6987400 to your computer and use it in GitHub Desktop.
Save phoenixg/6987400 to your computer and use it in GitHub Desktop.
获取QQ群成员QQ号和昵称列表
var ids = document.querySelectorAll(".member_id");
var names = document.querySelectorAll(".member_name");
var output = "", length = ids.length;
for(var i=0; i<length; i++){
output += ids[i].innerHTML.slice(1,-1) + ":" + names[i].innerHTML + "\n";
}
console.log(output);
// visit:
// http://qun.qzone.qq.com
// eg. http://qun.qzone.qq.com/group#!/88250111/member
@cooper1x
Copy link

现在不行了吧,看不到了

@lwx5924
Copy link

lwx5924 commented Jul 1, 2019

最多可以看自己和群主,管理员

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment