Greasy Fork is available in English.
打开任意一个CSDN博客页面,就可以进行自动点赞评论,可以涨积分升级,可以自定义策略与评论内容,高度可定制化
< Commentaires sur CSDN博客刷积分刷等级助手
https://blog.csdn.net/qq_43530438/article/details/109112861#comments_14036550
这个也会,其实有很多,但是当时没记录下来
var commentList = document.querySelector('#mainBox > main > div.comment-box > div.comment-list-container > div.comment-list-box > ul');
我用console.log(commentList)
调试发现,不管博文有没有评论,commentList 里面都是空的。
还有
for (let i = 0; i < commentList.getElementsByTagName("li").length - 1; i++) {
// 在页面的评论列表找到当前登陆用户账号
console.log("commentList.getElementsByTagName('li')的值:");
console.log(commentList.getElementsByTagName("li"));
if (Imgs[i].alt == myName) {
console.log("Imgs[i].alt 的值:");
console.log(Imgs[i].alt);
toComment = false;
console.log("已经评论过,无需重复评论");
break;
我已经设置让程序进去这个 if 语句里面了,但是上面这段代码就是不执行 谷歌版本是87.0.4280.88
你好,循环范围出了点问题,现在可以再试试有没有解决这个问题
个别博文会重复评论,这是什么原因呢?
比如这个:https://blog.csdn.net/qq_38209578/article/details/109490415