粘贴复制
方法二: 方法三: // 第三种 ios 设备和 android设备均正常,但是pc端没有//定义函数window.Clipboard = (function(window, document, navigator) { var textArea, copy; // 判断是不是ios端 function isOS() { return navigator.userAgent.match(/ipad|iphone/i); } //创建文本元素 function createTextArea(text) { console.log(text,"text"); textArea = document.createElement('textArea'); console.log(textArea,"textArea"); textArea.innerHTML = text; textArea.value = text; console.log(textArea.value,"textArea.value"); document.body.appendChild(textArea); } //选择内容 function selectText() { var range, selection; if (isOS()) { range = document.createRange();