// ==UserScript== // @name NBUT-学评教小助手 // @namespace nbuthelper // @version 1.0.0 // @description 懒死了你。 // @author XXY233 // @match http://jwxt.nbut.edu.cn/jwglxt/xspjgl/xspj* // @require https://cdn.jsdelivr.net/gh/CoeJoder/waitForKeyElements.js@v1.2/waitForKeyElements.js // @run-at document-end // ==/UserScript== clickRadioButtons(); function clickRadioButtons() { waitForKeyElements("input.radio-pjf", (element) => { // 别的办法设置按钮点击。 // element.setAttribute("checked", "checked"); if (element.getAttribute("data-dyf") == "95") { element.click(); } }); } function debugAlert() { alert("test"); }