Skip to content

Instantly share code, notes, and snippets.

@imbyc
Created March 1, 2022 07:11
Show Gist options
  • Save imbyc/7795c0da5d8a91fdd5da07642cd831b9 to your computer and use it in GitHub Desktop.
Save imbyc/7795c0da5d8a91fdd5da07642cd831b9 to your computer and use it in GitHub Desktop.
[js 自动点击]
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