首頁 > 軟體

JS實現一鍵複製

2022-07-01 18:00:11

原生js實現點選按鈕複製文字,供大家參考,具體內容如下

最近遇到一個需求,需要點選按鈕,複製 聊天記錄的文字到剪下板

一、原理分析

瀏覽器提供了 copy 命令 ,可以複製選中的內容

document.execCommand("copy")

如果是輸入框,可以通過 select() 方法,選中輸入框的文字,然後呼叫 copy 命令,將文字複製到剪下板

但是 select() 方法只對 和 有效,對於就不好使

最後我的解決方案是,在頁面中新增一個 ,然後把它隱藏掉點選按鈕的時候,先把 的 value 改為的 innerText,然後複製 中的內容

二、程式碼實現

<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>
<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("複製成功");
    }
    //或者
    function copyText(value) {
        // 建立元素用於複製
        var aux = document.createElement("input");

        // 設定元素內容
        aux.setAttribute("value", value);

        // 將元素插入頁面進行呼叫
        document.body.appendChild(aux);

        // 複製內容
        aux.select();

        // 將內容複製到剪貼簿
        document.execCommand("copy");

        // 刪除建立元素
        document.body.removeChild(aux);

        //提示
        alert("複製內容成功:" + aux.value);
    }
  </script>

三、一鍵複製

分享一個自己工作中用到的一鍵複製方法

/**
 * 一鍵貼上
 * @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);
    }
}

實現效果:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com