js confirm/copy

this.$confirm('内容', '标题', {               dangerouslyUseHTMLString: true,               confirmButtonText: '复制', //按钮的文本               showClose: false,               showCancelButton: false,               center: true //居中             }).then(res => {                 const copyStr = `复制的内容`             const oInput = document.createElement('input')             oInput.value = copyStr             document.body.appendChild(oInput)             oInput.select()// 选择对象;             const copyResult = document.execCommand('copy')// 执行浏览器复制命令             document.body.removeChild(oInput)      //可单独取出使用               if (copyResult) {               this.$message.success('已复制到粘贴板')             } else {               this.$message.error('复制失败')             }           })         }
上一篇:2022/1/14 CSS复习,JS等等运用


下一篇:JavaScript-筑基(十四)禁止鼠标右键、选中文字、获取鼠标坐标