广城理自动化教评

教务系统自动教师评测,解放双手

目前為 2021-12-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         广城理自动化教评
// @namespace    lweilve.top
// @version      0.1
// @description  教务系统自动教师评测,解放双手
// @author       Lweilve
// @match        http://jwxt.gcu.edu.cn/*
// @icon         http://lweilve.top/%E9%A6%99%E8%95%89.png
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const opt = document.getElementById('Form1').getElementsByTagName('option');
    const btn1 = document.getElementById('Button1');
    const btn2 = document.getElementById('Button2');
    if(btn2.disabled){
        for(let i = 0; i < opt.length; i++){
            if(i == opt.length - 4){
                opt[i].setAttribute("selected","selected")
                btn1.click();
            }else if(opt[i].label === "5(优秀)"){
                opt[i].setAttribute("selected","selected")
            }
        }
    }else{
        btn2.click();
    }
})();

QingJ © 2025

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