实现复制 分类于 UserScript 实现复制123456789101112<body> <input type="text" value="你好,我能被复制"> <button>点击复制</button> <script> document.querySelector("button").addEventListener('click', function () { // 1. 获取input,并选择它 document.querySelector("input").select(); // 2. 执行copy命令 document.execCommand("copy"); }) </script></body>