我一直在尝试让我的脚本可以使用很多年了,只是没有它!我试图在5秒后单击我的Twitter /关注页面上的所有“取消关注”按钮。这是我的没有setInterval函数的代码:
var buttonArray = document.getElementsByClassName('w-button-common w-button-unfollow'); for(var a=0;a<buttonArray.length;a++){ buttonArray[0].click(); }
以下是取消关注按钮的Twitters HTML DOM代码:
<span class="w-button-common w-button-unfollow"><input alt="Follow" src="https://ma.twimg.com/twitter-mobile/97bb0ca1daa74ae65fd470b1961897275eb91579/images/sprites/followchecked.gif" type="image"></span>
<input type="hidden" name="scribe_item" value="description=list&id=1875185790&item_type=3">
</form>
</td>
如果有人可以修改我的代码,我将非常感激!提前非常感谢您!
最佳答案
将buttonArray[0].click()
更改为buttonArray[a].click()
。