Skip to content

Instantly share code, notes, and snippets.

@shikaiwen
Created March 23, 2018 07:40
Show Gist options
  • Save shikaiwen/a4ed1f995f92b41f1dc20a32431b8424 to your computer and use it in GitHub Desktop.
Save shikaiwen/a4ed1f995f92b41f1dc20a32431b8424 to your computer and use it in GitHub Desktop.
微信复制group成员昵称,打开微信网页版
var arr = $(".members .member").toArray()
arr.shift()
var arr = arr.reduce(function(a,v){
a.push($("<span>").html($(v).attr("title")).text());
return a;
},[]);
document.write(JSON.stringify(arr))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment