Created
March 1, 2022 07:11
-
-
Save imbyc/7795c0da5d8a91fdd5da07642cd831b9 to your computer and use it in GitHub Desktop.
[js 自动点击]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ts = 2;//间隔时间 秒 | |
var JQuery=$; | |
function getHb(){ | |
if(JQuery("div[clk='core:close']")!=null){ | |
JQuery("div[clk='core:close']").click(); | |
} | |
JQuery(".bg").click(); | |
} | |
window.setInterval(getHb,ts*1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment