刚学油猴脚本,遇到一个网站,不能复制文本,发现在控制台中输入:
document.body.oncopy={}
就可以解除限制,于是编写脚本:
// ==UserScript==
// @name 大文斗
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.dawendou.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=dawendou.com
// @grant none
// @run-at document-end
// @grant unsafeWindow
// ==/UserScript==
(function() {
'use strict';
document.body.oncopy= {}
// Your code here...
})();
但是发现没有效果,请问是什么问题?
我在网上查找,试了延时setTimeout,试了unsafewindow,都无效
求大佬们指教!