Update file 测评.js

This commit is contained in:
Twilight 2024-06-11 14:44:31 +08:00
parent 0a903d6409
commit d02d640b2c

13
测评.js Normal file
View File

@ -0,0 +1,13 @@
var max = 19;
for (i = 0; i <= max; i++) {
var _this_radio = document.querySelector("#sel_score" + i)
if (_this_radio == undefined) {continue}
var _current = 0
if (i == 19) {_current = 1}
var _this_input = document.querySelectorAll("#sel_score" + i + " input[type=radio]")[_current]
_this_input.click();
}
document.querySelector('input[Name=Submit]').click();