wtujcf123 发表于 2023-5-3 01:03

为何这个油猴脚本不能在这个网站上运行。

本帖最后由 wtujcf123 于 2023-5-19 19:03 编辑

各位老师,这个油猴脚本为什么在这个网站上无法运行呢?\
需要如何改进?是因为有debugger的原因吗??

(function() {
    'use strict';

    // Create a button element
    var button = document.createElement('button');
    button.innerHTML = 'Copy Content';

    // Add button to the page
    document.body.appendChild(button);

    // Add click event listener to the button
    button.addEventListener('click', function(){
      var content = document.getElementsByClassName('PDF_title').textContent;      
      GM_setClipboard(content); // Use GM_setClipboard function to copy the content to clipboard
      alert('Content copied to clipboard!');
      // TODO: Save the content to a specific location
    });
})();

发现是自己的代码有些瑕疵。

塞北的雪 发表于 2023-5-3 14:57

本帖最后由 塞北的雪 于 2023-5-3 15:16 编辑

// ==UserScript==
// @name         中国裁判文书网
// @namespace    http://tampermonkey.net/
// @version      2023.05.03
// @description复制文书标题
// @author       塞北的雪
// @match      https://wenshu.court.gov.cn/website/wenshu/*/index.html*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=court.gov.cn
// @grant      GM_setClipboard
// ==/UserScript==

(function() {
    'use strict';
    function getContent(obj)
    {
      return document.getElementsByClassName(obj).innerText.trim();
    }
    var div_cp_title=document.createElement('div');div_cp_title.setAttribute("class","fl date");
    var btn_cp_title = document.createElement('button');btn_cp_title.innerHTML = '复制标题';div_cp_title.appendChild(btn_cp_title);

    var div_cp_content=document.createElement('div');div_cp_content.setAttribute("class","fl date");
    var btn_cp_content = document.createElement('button');btn_cp_content.innerHTML = '复制内容';div_cp_content.appendChild(btn_cp_content);

    var hbox=document.getElementsByClassName('header_box')
    hbox.appendChild(div_cp_title);
    hbox.appendChild(div_cp_content);

    btn_cp_title.addEventListener('click', function(){
      var content = getContent('PDF_title');
      console.log(content);
      GM_setClipboard(content);
      alert('标题已复制!');
    });
    btn_cp_content.addEventListener('click', function(){
      var content = getContent('PDF_pox');
      console.log(content);
      GM_setClipboard(content);
      alert('内容已复制!');
    });
})();


实测没有问题

KKBon 发表于 2023-5-3 01:27

1、脚本头,没写。
// ==UserScript==
// @name      New script
// @namespace   Violentmonkey Scripts
// @match       https://xxxxxxx/*
// @grant       none
// @version   1.0
// @AuThor      -
// @description 2023/5/3 01:25:07
// ==/UserScript==

脚本内容


2. button没有位置信息,appendChild按钮只会在最底部出现

三滑稽甲苯 发表于 2023-5-3 07:34

你先加个console.log看看有没有输出,如果有输出就是你脚本的问题

wtujcf123 发表于 2023-5-3 09:35

三滑稽甲苯 发表于 2023-5-3 07:34
你先加个console.log看看有没有输出,如果有输出就是你脚本的问题

不对的。这个脚本可以在吾受上运行。
// ==UserScript==
// @name         Copy HDIV Content
// @namespace    http://tampermonkey.net/
// @version      1.0
// @descriptionCopy HDIV Content and save it to a specific location
// @AuThor       Your Name
// @include      *52pojie.cn*
// @grant      GM_setClipboard
// @grant      GM_download
// ==/UserScript==

(function() {
    'use strict';

    // Create a button element
    var button = document.createElement('button');
    button.innerHTML = 'Copy Content';

    // Add button to the page
    document.body.appendChild(button);

    // Add click event listener to the button
    button.addEventListener('click', function(){
      var content = document.getElementsByClassName('toptitle_7ree').textContent;
      GM_setClipboard(content); // Use GM_setClipboard function to copy the content to clipboard
      alert('Content copied to clipboard!');
      // TODO: Save the content to a specific location
    });
})();

wtujcf123 发表于 2023-5-3 10:05

本帖最后由 wtujcf123 于 2023-5-3 10:18 编辑

请各位老师帮个忙了。是不是addEventListener这个给网站禁用了

三滑稽甲苯 发表于 2023-5-3 13:45

wtujcf123 发表于 2023-5-3 09:35
不对的。这个脚本可以在吾受上运行。
// ==UserScript==
// @name       ...

你没有match/include你要的网站

wtujcf123 发表于 2023-5-3 13:54

三滑稽甲苯 发表于 2023-5-3 13:45
你没有match/include你要的网站

并不是啊,您有测试过吗?

wtujcf123 发表于 2023-5-3 15:02

本帖最后由 wtujcf123 于 2023-5-3 15:07 编辑

谢谢老师,完美运行。

老师,如果需要将内容保存到本地,需要再添加什么代码呢?能麻烦再修改一下吗??

塞北的雪 发表于 2023-5-3 15:23

wtujcf123 发表于 2023-5-3 15:02
谢谢老师,完美运行。

老师,如果需要将内容保存到本地,需要再添加什么代码呢?能麻烦再修改一下吗??

如果要自动化采集,可以用python+selenium,或者可以修改脚本,用GM_xmlhttpRequest到自己的API接口
页: [1] 2
查看完整版本: 为何这个油猴脚本不能在这个网站上运行。