1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
(function() { 'use strict';
document.body.addEventListener("keydown", function (e) { if (e.ctrlKey && e.keyCode == "67") { let tagetStr = document.querySelector(".search-result-wrap .link").innerText.split("查看全部包含“")[1].split("”的文档")[0]; let input = document.createElement("input"); input.setAttribute("value", tagetStr); document.body.appendChild(input); input.select(); document.execCommand("copy"); document.body.removeChild(input); setTimeout(function () { document.querySelector(".dialog-mask").style.display = "none"; document.querySelector(".copy-limit-dialog-v2").style.display = "none"; }, 1) } })
document.body.addEventListener("mouseup", function () { document.querySelector("#reader-helper").style.display = "none"; }) })();
|