ddwhm 发表于 2024-7-31 09:41:27

关于脚本没有运行

!(data/attachment/forum/202407/31/094101eml31mb6x3stubjn.png)!(data/attachment/forum/202407/31/094114tnq61zqctnpc1z4c.png)

ddwhm 发表于 2024-7-31 09:45:39

!(data/attachment/forum/202407/31/094537hsqxax5xmmhmoolq.png)

王一之 发表于 2024-7-31 11:01:08

啥版本的油猴?

哥哥发下代码看看

ddwhm 发表于 2024-7-31 11:05:03

// ==UserScript==
// @name         贵州医科大
// @namespace    http://tampermonkey.net/
// @version      2024-07-30
// @descriptiontry to take over the world!
// @author       You
// @match      https://xnfzsys.gmc.edu.cn/mengoo/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant      none
// @grant      unsafeWindow
// @run-at       document-start
// ==/UserScript==


let aa =setInterval(function(){
// 获取到全部章节目录
let nodeList = document.querySelectorAll(".resCourse")
if(nodeList.length!=0){
    clearInterval(aa)
    console.log(nodeList);
    for(let x =0;x<nodeList.length;x++){
      // 获取每个章节的进度条是否完成
      var ChapterProgress = nodeList.lastChild.innerText.replace("%",'');
      // 获取每个章节的标题
      var ChapterText = nodeList.childNodes.childNodes.innerText;

      if(ChapterProgress==100){
            console.log("已完成:"+ChapterText+"进度条为"+ChapterProgress);
      }else{
            console.log("未完成:"+ChapterText+"进度条为"+ChapterProgress);
      }
    }
}
},1000)

ddwhm 发表于 2024-7-31 11:05:22

王一之 发表于 2024-7-31 11:01
啥版本的油猴?

哥哥发下代码看看

// ==UserScript==
// @name         贵州医科大
// @namespace    http://tampermonkey.net/
// @version      2024-07-30
// @descriptiontry to take over the world!
// @author       You
// @match      https://xnfzsys.gmc.edu.cn/mengoo/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant      none
// @grant      unsafeWindow
// @run-at       document-start
// ==/UserScript==


let aa =setInterval(function(){
// 获取到全部章节目录
let nodeList = document.querySelectorAll(".resCourse")
if(nodeList.length!=0){
    clearInterval(aa)
    console.log(nodeList);
    for(let x =0;x<nodeList.length;x++){
      // 获取每个章节的进度条是否完成
      var ChapterProgress = nodeList.lastChild.innerText.replace("%",'');
      // 获取每个章节的标题
      var ChapterText = nodeList.childNodes.childNodes.innerText;

      if(ChapterProgress==100){
            console.log("已完成:"+ChapterText+"进度条为"+ChapterProgress);
      }else{
            console.log("未完成:"+ChapterText+"进度条为"+ChapterProgress);
      }
    }
}
},1000)

王一之 发表于 2024-7-31 11:06:47

这和哥哥截图的代码不一样啊

ddwhm 发表于 2024-7-31 11:07:41

王一之 发表于 2024-7-31 11:06
这和哥哥截图的代码不一样啊

都是报的这个错

ddwhm 发表于 2024-7-31 11:08:04

王一之 发表于 2024-7-31 11:06
这和哥哥截图的代码不一样啊

全部脚本都不生效

王一之 发表于 2024-7-31 11:08:09

ddwhm 发表于 2024-7-31 11:07
都是报的这个错

tampermonkey 和 浏览器都什么版本呢?

王一之 发表于 2024-7-31 11:09:11

ddwhm 发表于 2024-7-31 11:08
全部脚本都不生效

更新到最新试试,可能是脚本管理器的问题 tamermonkey升级了mv3,好像还不稳定

可以试试脚本猫 https://docs.scriptcat.org/
页: [1] 2
查看完整版本: 关于脚本没有运行