您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
六安职业技术学院教务系统快速评教
当前为
// ==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(); } })();