jjm2473 / 华师教学质量评价一键填充

// ==UserScript==
// @name         华师教学质量评价一键填充
// @version      0.1
// @encoding     utf-8
// @description  适用于华南师范大学教务系统jwc.scnu.edu.cn,其他正方教务系统请自测
// @icon         http://jwc.scnu.edu.cn/style/base/favicon.ico
// @author       jjm2473@qq.com
// @match        http://jwc.scnu.edu.cn/xsjxpj.aspx*
// @run-at       document-end
// @namespace    https://openuserjs.org/users/jjm2473/
// @grant        none
// ==/UserScript==

(function(){
    var optionsv=["","1(完全不同意)","2(基本不同意)","3(不表态)","4(基本同意)","5(完全同意)"];
    var select=document.createElement("select");
    select.onchange=function(){
        jQuery("select:[name^=DataGrid]").val(select.value);
    };
    optionsv.forEach(function(v){
        var o=document.createElement("option");
        o.value=v;
        o.text=v;
        select.appendChild(o);
    });
    var pjkc=document.getElementsByName('pjkc')[0];
    pjkc && pjkc.parentElement.insertBefore(select,pjkc.nextSibling);
})();