April 19, 2018
Javascript: 实现复制内容到粘贴板, clipboardjs用法, 实现复制内容到剪贴板, How TO – Copy Text to Clipboard
1. 简单方法
HTML
<!-- The text field -->
<input type="text" value="Hello World" id="myInput">
<!-- The button used to copy the text -->
<button onclick="myFunction()">Copy text</button>
JavaScript
function myFunction() {
/* Get the text field */
var copyText = document.getElementById("myInput");
/* Select th… Read More