如何将预标签代码复制到html中的剪贴板?

时间:2018-03-05 11:58:54

标签: javascript html clipboard

我正在尝试将pre标签内写的代码复制到剪贴板中。 我怎样才能做到这一点? 我试图使用下面的代码解决这个问题:

function myFunction() {
  var copyText = document.getElementById("myInput");
  copyText.select();
  document.execCommand("Copy");
  alert("Copied the text: " + copyText.value);
}
<pre id="myInput">
    <span style="color:#97EDDC;">class </span>first
    {
    	<span style="color:#97EDDC;">public</span> <span style="color:#97EDDC;">static </span> <span style="color:#97EDDC;">void </span> main(String args[]) // here S is capital of String word
    	{
    		System.out.println("Hello World!!"); // here S is capital of System word
    	}
    }
</pre>

给我正确的解决方案,将代码从pre标签复制到剪贴板,而不包括span标签。

1 个答案:

答案 0 :(得分:9)

不幸的是,select()只能用于可见的输入元素。 所以你可以做的是提取pre元素的文本内容。

将此应用于textarea并将textarea放在普通视图区域之外。

function copyFunction() {
  const copyText = document.getElementById("myInput").textContent;
  const textArea = document.createElement('textarea');
  textArea.textContent = copyText;
  document.body.append(textArea);
  textArea.select();
  document.execCommand("copy");
}

document.getElementById('button').addEventListener('click', copyFunction);
textarea {
  position: absolute;
  left: -100%;
}
 
            
<pre id="myInput">
<span style="color:#97EDDC;">class </span>first
{
    <span style="color:#97EDDC;">public</span> <span style="color:#97EDDC;">static </span> <span style="color:#97EDDC;">void </span> main(String args[])
    {
        System.out.println("Hello World!!"); 
    }
}
            </pre>

<button id="button">Copy</button>