js 复制文本到剪贴板
Posted super.hill
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 复制文本到剪贴板相关的知识,希望对你有一定的参考价值。
var str = "博客园最棒!"; var tempInput = document.createElement(‘input‘); tempInput.value = Url2; document.body.appendChild(tempInput); tempInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令 tempInput.className = ‘tempInput‘; tempInput.style.display=‘none‘; document.body.removeChild("tempInput");
“博客园最棒!”
比如把这句话复制到剪贴板
var str = "博客园最棒!";
var tempInput = document.createElement(‘input‘);
tempInput.value = Url2;
document.body.appendChild(tempInput);
tempInput.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
tempInput.className = ‘tempInput‘;
tempInput.style.display=‘none‘;
document.body.removeChild("tempInput");
以上是关于js 复制文本到剪贴板的主要内容,如果未能解决你的问题,请参考以下文章