Created
June 17, 2021 08:56
-
-
Save aqzlpm11/6dbce128ca7962c8eeb85105effb6657 to your computer and use it in GitHub Desktop.
cnki 每页显示50个
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
is_first = true | |
save_value = "<span>50<span>" | |
function update_btn() { | |
btn = $("#perPageDiv>") | |
if (btn.length == 0) { | |
is_first = true | |
return | |
} | |
if (is_first) { | |
$("#perPageDiv>")[0].innerHTML = save_value | |
is_first = false | |
BriefExtend['searchCallBackFun'](false, 1) | |
} else { | |
save_value = $("#perPageDiv>")[0].innerHTML | |
} | |
} | |
setInterval(update_btn, 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment