└── 优学院考试脚本.js /优学院考试脚本.js: -------------------------------------------------------------------------------- 1 | var question= document.getElementsByClassName("multiple-choice record") 2 | var arr =Array.from(question) 3 | 4 | function get(id,back){ 5 | $.ajax({ 6 | type: "get", 7 | url: "https://api.ulearning.cn/questionAnswer/" + id, 8 | datatype: "json", 9 | success: function(result) { 10 | console.log(result.correctAnswerList); 11 | back(result.correctAnswerList); 12 | } 13 | }); 14 | } 15 | 16 | arr.forEach(one=>{ 17 | let id= one.dataset.id; 18 | get(id,function(Answer){ 19 | Array.from(one.children)[0].innerText+="========答案是:"+Answer; 20 | }) 21 | }) 22 | --------------------------------------------------------------------------------