该方法兼容所有浏览器~
<script type="text/javascript"> /*复制到剪切板*/ function copyresult(copytext) { var oInput = document.createElement('input'); oInput.value = copytext; document.body.appendChild(oInput); oInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令 removeelement(oInput); } /*删除元素*/ function removeelement(element) { element.parentNode.removeChild(element); } </script> <input type="button" onClick="copyresult('【想要复制的内容】')" value="点击复制" />
本站文章除注明转载/出处外,均为原创,若要转载请务必注明出处。转载后请将转载链接通过邮件告知我站,谢谢合作。本站邮箱:admin@only4.work
尊重他人劳动成果,共创和谐网络环境。点击版权声明查看本站相关条款。