// 复制功能 bindCopy(idName) { // 创建range对象 let range = document.createRange(); // 传入需要选中的节点 range.selectNodeContents(document.querySelector(idName)); var selection = document.getSelection(); // 清空选中的区域 selection.removeAllRanges(); // 添加选中区域 selection.addRange(range); // 执行复制 document.execCommand('Copy'); this.$toast('复制成功'); }