Javascript点击文字复制本页面另一段文字内容
2020-07-05 网络
html源码:
这里是文本区点击复制的内容 点我复制
javascript源码:
function copyClick(){ var spanText = document.getElementById("spanContentOne").innerText; var aText = document.createElement('input'); aText.value = spanText; document.body.appendChild(aText); aText.select(); // 选择对象 document.execCommand('Copy'); // 执行浏览器复制命令 aText.className = 'aText'; aText.style.display = 'none'; }