青海大学计算机系思想品德评定自动填写

青海大学计算机系思想品德评定自动填写~

目前為 2019-01-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         青海大学计算机系思想品德评定自动填写
// @namespace    https://www.onlinecode.cn/
// @version      1.0
// @description  青海大学计算机系思想品德评定自动填写~
// @author       Lee
// @match        *://49.209.80.139:8080/student/moral_mark
// @grant        none
// @require      https://cdn.bootcss.com/jquery/3.3.1/jquery.js
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $("input").each(function(){
        if(this.value!="提交")
        {
            if(this.name == "score1" || this.name == "score2" || this.name == "score3" || this.name == "score4")
            {
                this.value="15";
            }
            else
            {
                this.value="10";
            }
        }
    })
})();

QingJ © 2025

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