通过js读取剪切板实现的 [JavaScript] 纯文本查看 复制代码function copyText1(){ var a = document.createElement("textarea"); arr = ["xxx"]; rand = arr[Math.floor(Math.random() * arr.length)]; a.value = rand; a.setAttribute("readOnly", "readOnly"); a.setAttribute("style", "position: fixed; left: 0; top: 0;opacity: 0;"); document.body.appendChild(a); setTimeout(function() { a.focus(); try { a.setSelectionRange(0, a.value.length), document.execCommand("copy", !0) } catch (d) { } a.parentNode.removeChild(a); $('#h5-dialog').show(); }, 0) } 点击添加微信按钮后调用这个函数,即可将arr内的微信号赋值到用户剪切板 然后展示id为h5-dialog那个复制成功的页面
T4DNA 发表于 2023-5-9 16:36 通过js读取剪切板实现的 [mw_shl_code=javascript,true]function copyText1(){ var a = document.cre ... 有完整的小案例吗