function copyText(text){ var textValue = document.createElement('textarea'); textValue.setAttribute('readonly', 'readonly'); //设置只读属性防止手机上弹出软键盘 textValue.value = text; document.body.appendChild(textValue); //将textarea添加为body子元素 textValue.select(); var res = document.execCommand('copy'); document.body.removeChild(textValue);//移除DOM元素 console.log("复制成功"); return res; }
js复制文字的方法
标签:文字,body,text,js,复制,document,textValue From: https://www.cnblogs.com/newmiracle/p/17219017.html