评教一键全选完全赞同

湖南财院教务系统。

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         评教一键全选完全赞同
// @version      1.0.1
// @description  湖南财院教务系统。
// @author       372728339
// @include      http://jiaowu2.hufe.edu.cn/jsxsd/xspj/xspj_edit.do*
// @require      https://code.jquery.com/jquery-1.12.4.min.js
// @namespace https://greasyfork.org/users/574299
// ==/UserScript==
(function() {
	"use strict";
	var styles = 'font-size:20px;font-weight:bold;color:#ff8800;cursor:pointer;';
	var border = 'border: 1px solid;margin-right:10px;padding:3px;';
	var $ = unsafeWindow.jQuery;
	var btn = '<button id="btn" style="' + styles + border + '">一键全选</span>';
	$('.Nsb_r_title').append(btn);
	$("#btn").click(() => {
		$('input[type=hidden]').each(function () {
			if ($(this).val() == "5") {
				$(this).prev().attr('checked','true')
			}
		})
	});
})()