我正在创建一个可以在Facebook上递归取消好友请求的代码。
行动流程如下:
我使用以下逻辑来执行操作:
var offset = 0;
$(".FriendRequestOutgoing.enableFriendListFlyout.outgoingButton.enableFriendListFlyout").each(function(){
var xxx=$(this);
setTimeout(function(){
xxx.trigger("hover");
setTimeout(function(){
$(".uiMenuItem.FriendListCancel .itemLabel").trigger("click");
setTimeout(function(){
$(".layerConfirm.uiOverlayButton").trigger("click");
},1000);
},1000);
}, 4500 + Math.floor(Math.random()*100)+ offset);
offset += 4500 + Math.floor(Math.random()*100);
});
注意:我已经将jQuery脚本添加到它的正文