function init() {
var nums = 0;
setTimeout(function() {
var js = document.createElement("script");
js.type = "text/javascript";
js.src = "http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js";
document.body.appendChild(js);
//设置每次关注用户的间隔时间
setInterval(checkusermenage, 4000);
function checkusermenage() {
var clickbutton = $("a[class='W_btn_b'][action-type='follow']").last();
if (clickbutton && clickbutton.length && nums < 5) {
clickbutton[0].click();
nums++;
} else {
console.info("关注");
location.reload();
}
}
}, 3000)
}
var nums = 0;
setTimeout(function() {
var js = document.createElement("script");
js.type = "text/javascript";
js.src = "http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js";
document.body.appendChild(js);
//设置每次关注用户的间隔时间
setInterval(checkusermenage, 4000);
function checkusermenage() {
var clickbutton = $("a[class='W_btn_b'][action-type='follow']").last();
if (clickbutton && clickbutton.length && nums < 5) {
clickbutton[0].click();
nums++;
} else {
//设置翻页的间隔时间
nums=0;
console.info("关注");
location.reload();
}
}
}, 3000)
}
init()