原生 js 实现点击按钮复制文本

原生 js 实现点击按钮复制文本

 

最近遇到一个需求,需要点击按钮,复制 <p> 标签中的文本到剪切板

之前做过复制输入框的内容,原以为差不多,结果发现根本行不通

尝试了各种办法,最后使了个障眼法,实现了下面的效果

 

一、原理分析

浏览器提供了 copy 命令 ,可以复制选中的内容

document.execCommand("copy")

如果是输入框,可以通过 select() 方法,选中输入框的文本,然后调用  copy 命令,将文本复制到剪切板

但是 select() 方法只对 <input> 和 <textarea> 有效,对于 <p> 就不好使

 

最后我的解决方案是,在页面中添加一个 <textarea>,然后把它隐藏掉

点击按钮的时候,先把 <textarea> 的 value 改为 <p> 的 innerText,然后复制 <textarea> 中的内容

 

二、代码实现

HTML 部分

复制代码
<style type="text/css">
   .wrapper {position: relative;}
   #input {position: absolute;top: 0;left: 0;opacity: 0;z-index: -10;}
</style>

<div class="wrapper">
   <p id="text">我把你当兄弟你却想着复制我?</p>
   <textarea id="input">这是幕后黑手</textarea>
   <button onclick="copyText()">copy</button>
</div>
复制代码

 

JS 部分

复制代码
  <script type="text/javascript">
    function copyText() {
      var text = document.getElementById("text").innerText;
      var input = document.getElementById("input");
      input.value = text; // 修改文本框的内容
      input.select(); // 选中文本
      document.execCommand("copy"); // 执行浏览器复制命令
      alert("复制成功");
    }
  </script>
复制代码

 

亲测,Firefox 48.0,Chrome 60.0,IE 8 都能用

 方法一

 

	/**
	 * 复制内容到剪切板
	 * @param text
	 * @returns {boolean}
	 */
	function copyText(text) {
		var textarea = document.createElement("textarea");
		var currentFocus = document.activeElement;
		document.body.appendChild(textarea);
		textarea.value = text;
		textarea.focus();
		if (textarea.setSelectionRange)
			textarea.setSelectionRange(0, textarea.value.length);
		else
			textarea.select();
		try {
			var flag = document.execCommand("copy");
		} catch(eo){
			var flag = false;
		}
		document.body.removeChild(textarea);
		currentFocus.focus();
		return flag;
	}

  

三、一键复制 方法二

分享一个自己工作中用到的一键复制方法

复制代码
/**
 * 一键粘贴
 * @param  {String} id [需要粘贴的内容]
 * @param  {String} attr [需要 copy 的属性,默认是 innerText,主要用途例如赋值 a 标签上的 href 链接]
 *
 * range + selection
 *
 * 1.创建一个 range
 * 2.把内容放入 range
 * 3.把 range 放入 selection
 *
 * 注意:参数 attr 不能是自定义属性
 * 注意:对于 user-select: none 的元素无效
 * 注意:当 id 为 false 且 attr 不会空,会直接复制 attr 的内容
 */
copy (id, attr) {
    let target = null;

    if (attr) {
        target = document.createElement('div');
        target.id = 'tempTarget';
        target.style.opacity = '0';
        if (id) {
            let curNode = document.querySelector('#' + id);
            target.innerText = curNode[attr];
        } else {
            target.innerText = attr;
        }
        document.body.appendChild(target);
    } else {
        target = document.querySelector('#' + id);
    }

    try {
        let range = document.createRange();
        range.selectNode(target);
        window.getSelection().removeAllRanges();
        window.getSelection().addRange(range);
        document.execCommand('copy');
        window.getSelection().removeAllRanges();
        console.log('复制成功')
    } catch (e) {
        console.log('复制失败')
    }

    if (attr) {
        // remove temp target
        target.parentElement.removeChild(target);
    }
}

法二:
html:
<span class="orange" id="shareUrl" data-url="www.manlongdyf.com/store/${currentStore.id}?ref=1">www.manlongdyf.com/store/${currentStore.id}?ref=1</span>
<a id="copyShare" style="cursor: pointer;" href="#">复制</a>

js:

/**
* 复制内容到剪切板
* @param text
* @returns {boolean}
*/
function copyText(text) {
var textarea = document.createElement("textarea");
var currentFocus = document.activeElement;
document.body.appendChild(textarea);
textarea.value = text;
textarea.focus();
if (textarea.setSelectionRange)
textarea.setSelectionRange(0, textarea.value.length);
else
textarea.select();
try {
var flag = document.execCommand("copy");
} catch(eo){
var flag = false;
}
document.body.removeChild(textarea);
currentFocus.focus();
return flag;
}

$("#copyShare").click(function(){
var shareUrl = $("#shareUrl").data("url");
if (copyText(shareUrl)) {
$.alert("${message("复制成功");
}
})
复制代码
posted @ 2021-09-27 16:02  前端白雪  阅读(541)  评论(0)    收藏  举报