我这10毫秒点击一次都抢不到
//make the button click-able
$("button.button.J-gotoAuth").removeAttr("disabled");
//disable the pop-up dialog window
$("div.dialog.J-bizDialog").hide();
//repeatly trigger the button in the time interval of 400ms
function btnhack() {
$(document).ready(function(){
$("button.button.J-gotoAuth").trigger("click");
});
}
// 如果你的电脑配置棒棒的,可以尝试把400毫米间隔改为更短
setInterval("btnhack()","10");