您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
进行快速教学评估。
// ==UserScript== // @name 齐大URP教务系统助手 // @version 1.3 // @description 进行快速教学评估。 // @author djy // @match http://111.43.36.164/student/teachingEvaluation/teachingEvaluation/evaluationPage // @match http://172.20.139.153:7700/student/teachingEvaluation/teachingEvaluation/evaluationPage // @match https://172-20-139-153-7700.webvpn.qqhru.edu.cn/student/teachingEvaluation/teachingEvaluation/evaluationPage // @grant none // @namespace https://greasyfork.org/users/737539 // ==/UserScript== (function() { 'use strict'; $(document).ready(function () { var keyWord=["(A)"]; $(".ace").each(function(){ var self=$(this); var text=$(this).next().next().html(); keyWord.forEach(function(value){ if(text.indexOf(value)!=-1) self.click(); }); console.log(text); }) //document.querySelector("#page-content-template > div > div > div.widget-content > form > div > table > tbody > tr:nth-child(25) > td > div > textarea") var content="上课有热情,积极解决学生问题,很好的老师!!";//自行填写 // $("textarea").val(content); $("#page-content-template > div > div > div.widget-content > form > div > table > tbody > tr:nth-child(25) > td > div > textarea").val(content); setTimeout(function() { $("#buttonSubmit").click() setTimeout(function() { $("#layui-layer1 > div.layui-layer-btn > a.layui-layer-btn0").click() console.log("我提交啦"); }, 1370); }, 137001); }); })();