jwb filler

automatically fill the review of courses in jwb

// ==UserScript==
// @name         jwb filler
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  automatically fill the review of courses in jwb
// @author       Lokilanka
// @match        http://jwbinfosys.zju.edu.cn/xsjxpj.aspx?*
// @grant        none
// ==/UserScript==

//DataGrid1__ctl11_RadioButtonList3_0

(function() {
    'use strict';
    for(var i=2; i<=17; i++){
        var str = 'DataGrid1__ctl'+String(i)+'_RadioButtonList3_0';
        var radio = document.getElementById(str)
        radio.checked = "true"
    }
    radio = document.getElementById("RadioButtonList4_0");
    radio.checked = "true";
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址