六职快速教学评价

六安职业技术学院教务系统快速评教

// ==UserScript==
// @name         六职快速教学评价
// @namespace    https://wyq.icu/
// @version      0.0.1
// @description  六安职业技术学院教务系统快速评教
// @author       You
// @match        http://jwgl.lvtc.edu.cn//jxkp/Stu_WSKP_pj.aspx?*
// @icon         https://www.lvtc.edu.cn/_upload/tpl/00/01/1/template1/images/logo-blue_06.png
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var isSubmit = false; // 如果需要自动提交请将此处改成true
    var list = document.querySelectorAll('input[djdm="01"]');
    for (var i = 0; i < list.length; i++) {
        list[i].click();
    }
    if(isSubmit){
       //document.querySelector("body > form > table > tbody > tr:nth-child(2) > td > table > tbody > tr:nth-child(49) > td > input:nth-child(2)").click();
    }
})();