Greasy Fork

湖科职教务评分助手

点击进入评分系统,默认为A,一秒评完。

目前为 2020-12-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         湖科职教务评分助手
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  点击进入评分系统,默认为A,一秒评完。
// @author       biubiu
// @match        http://*/*
// @include      http://210.42.171.165/*
// @include      https://210.42.171.165/*
// @grant        none
// ==/UserScript==

var grade = 1; //1为A ,2为B, 3为C
(function() {
  var btn=document.createElement("BUTTON");
	btn.id="btn";
    document.body.appendChild(btn);
	btn.style.position="sticky";
    btn.style.height="50px";
	btn.style.width="100px";
	btn.style.zIndex="9999";
	btn.innerText="开始";
	document.getElementById("btn").onclick=function(){
		var tb = document.getElementById("DataGrid1");
		var rows = tb.rows;
		for(var i=1;i<rows.length;i++){
			var name = rows[i].querySelector("select").id;
			document.getElementById(name).options[grade].selected = true;
		}
		btn.innerText="评分结束";
	}
})();