前言
本文章主要目的是对油猴写脚本的简单运用,还是希望大家认真评教,任何后果本人不负责。本人测试后应该是没什么问题的,但是不排除bug的,毕竟为了方便写的很简单,欢迎交流讨论。
一、为什么要写这么个脚本?
因为评教时每个老师都有9个选项,老师们都比较优秀,所以都要点优秀选项是个重复麻烦的事情(主要是自己懒),所以想到借助油猴来完成评教。
二、使用步骤
1.创建脚本
本文默认在Chrome中安装好了油猴拓展,网上有很多教程,,这里不再赘述。
点击拓展按钮中的Tampermonkey(左),点击“添加新脚本...”(右)
2.源代码
我们可以看到油猴脚本的编写界面(上),把原来的文本删除,将下面的源代码复制粘贴到脚本中,按ctrl+s保存
// ==UserScript==
// @name 北理评教系统
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://pj.bit.edu.cn/*/*
// @icon https://www.google.com/s2/favicons?domain=bit.edu.cn
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
alert("评教系统我来啦——Ws3")
document.getElementById("pjnr_1_1").setAttribute("checked", "checked");
document.getElementById("pjnr_2_1").setAttribute("checked", "checked");
document.getElementById("pjnr_3_1").setAttribute("checked", "checked");
document.getElementById("pjnr_4_1").setAttribute("checked", "checked");
document.getElementById("pjnr_5_1").setAttribute("checked", "checked");
document.getElementById("pjnr_6_1").setAttribute("checked", "checked");
document.getElementById("pjnr_7_1").setAttribute("checked", "checked");
document.getElementById("pjnr_8_1").setAttribute("checked", "checked");
document.getElementById("pjnr_9_1").setAttribute("checked", "checked");
})();
这时候我们回到油猴的“管理面板”就可以看见我们的评教系统的脚本了,把他启用
3.运用
这个时候我们的脚本已经添加完毕了,我们打开评教查看结果,可以看到,打开主界面已经有消息提示了
我们现在有已评的和未评的,我们点击“评教”按钮(左),发现页面已经点击成了“优秀”
我们再点击评教,(半)自动评教功能已经实现了
总结
以上就是今天要讲的内容,本文仅仅简单介绍了油猴的使用,大家还是认真评教,这个脚本技术性不高,有问题欢迎大家和我交流 QQ:747311667
版权归原作者 1011 0011 所有, 如有侵权,请联系我们删除。