抱怨缺乏厌恶按钮的行为在Facebook上风行一时,各种各样的团体如雨后春笋般涌现,提供厌恶按钮,但前提是您邀请了x个 friend 。

其中一个(可能是弯曲的?)组之一要求您在加入过程中运行Javascript。我从来没有做过网络编码,所以我想知道是否有人可以告诉我下面的代码做什么?

javascript:elms=document.getElementById('friends').getElementsByTagName('li');
for(var fid in elms){
     if(typeof elms[fid] === 'object'){
          fs.click(elms[fid]);
     }
}

该组的链接在这里:|►OFFICIAL Dislike Button™ is Finally Here◄| Add it Now, it ACTUALLY WORKS!。该代码在“最新新闻”部分的3个步骤下列出。

最佳答案

// Find the Element in the webpage that has the ID "friends", which is the list of your friends ;-)
javascript:elms=document.getElementById('friends').getElementsByTagName('li');
// Iterate over every friend in the list
for(var fid in elms){
     // just a validation
     if(typeof elms[fid] === 'object'){
          // Click on the invite to Group button
          fs.click(elms[fid]);
     }
}

基本上,此代码会为您的所有 friend ;-)产生群组邀请

10-06 01:11