網頁內容複製粘貼(三種方案 兼容多種瀏覽器)


tags:javascript

  • js
  • ctrl+c

網頁內容複製粘貼(三種方案 兼容多種瀏覽器)

對網頁上的內容實現複製粘貼的功能css

痛點:須要支持多種不一樣的瀏覽器 主要有IE,Firefoxhtml

  1. IE瀏覽器下的解決方案: window.clipboardData.setData("Text", text);
  2. 通用瀏覽器的解決方案: 選中元素以後執行: document.execCommand('copy')
  3. Firefox下的解決方案 兩種折中的方案 a. 監聽hover事件 當鼠標移動至須要複製的文本上時 用戶按下ctrl+c 實現複製 b.window.prompt("Copy to clipboard: Ctrl+C, Enter", text); 彈出框內容爲選中的文案,用戶按下ctrl+c 實現複製

整合以後的代碼爲java

function copyToClipboard(text) {
  if (window.clipboardData) { // Internet Explorer
    window.clipboardData.setData("Text", text);
  } else {
    var textArea = document.createElement("textarea");
    textArea.style.background = 'transparent';
    textArea.value = text;
    document.body.appendChild(textArea);
    textArea.select();
    try {
      if (!document.execCommand('copy')) {
        copyToClipboardMozilla(text);
	  } else {
        showInfo("提示", "複製成功")
      }

    } catch (err) {
      console.log('Oops, unable to copy');
    }
      document.body.removeChild(textArea);
  }
}

function copyToClipboardMozilla(text) {
  window.prompt("Copy to clipboard: Ctrl+C, Enter", text);
}

$(".copy").on("mouseenter", function () {
  $(this).css("background-color", "#c8c9c8");
  $(this).focus();
  var textArea = document.createElement("textarea");
  textArea.style.background = 'transparent';
  textArea.id = "copyContent";
  textArea.value = $(this).text();
  document.body.appendChild(textArea);
  textArea.select(); 
})

$(".copy").on("mouseleave", function () {
  $(this).css("background-color", "");
 document.body.removeChild(document.getElementById("copyContent")); 
})
複製代碼

參考資料:git

  1. 幾個通用的解決複製的方法
  2. document.execCommand API W3C API
  3. How do I copy to the clipboard in JavaScript?
  4. How does Trello access the user's clipboard?
  5. 20 行 JS 代碼,實現複製到剪貼板功能

兼容處理了瀏覽器的複製功能,有更好的方案解決歡迎留言聯繫 未經做者容許 請勿轉載,謝謝 :)github

相關文章
相關標籤/搜索