复制数据到剪切板
function copyText(text) { var textarea = document.createElement("textarea"); //创建input对象 var currentFocus = document.activeElement; //当前获得焦点的元素 var toolBoxwrap = document.querySelector('body'); //将文本框插入到NewsToolBox这个之后 toolBoxwrap.appendChild(textarea); //添加元素 textarea.value = text; textarea.focus(); if (textarea.setSelectionRange) { textarea.setSelectionRange(0, textarea.value.length); //获取光标起始位置到结束位置 } else { textarea.select(); } try { var flag = document.execCommand("copy"); //执行复制 } catch (eo) { var flag = false; } toolBoxwrap.removeChild(textarea); //删除元素 currentFocus.focus(); return flag; }
吾乃代码搬运工,侵联删