南京大学教务网课程评估自动好评

自动好评

// ==UserScript==
// @name         南京大学教务网课程评估自动好评
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  自动好评
// @author       njuer
// @match        https://ehallapp.nju.edu.cn/jwapp/sys/wspjyyapp/*default/index.do?*
// @icon         https://www.nju.edu.cn/images/favicon.png
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
function selectElementsWithText(text) {
  const inputElements = document.querySelectorAll('input[type="radio"]');
  for (const inputElement of inputElements) {
    if (inputElement.dataset.xDafxsm === text) {
      inputElement.checked = true;
    }
  }
}

// 调用函数并传入需要识别的文本
const targetText = "很好";
setInterval(() => selectElementsWithText(targetText), 1000); // 每隔1秒执行一次

})();