美文网首页
JavaScript 将文字复制到剪贴板

JavaScript 将文字复制到剪贴板

作者: 赛亚人之神 | 来源:发表于2019-07-22 13:54 被阅读0次
                copyTextToClipboard() {
                    //console.log(text)
                    let textArea = document.createElement("textarea");
                    textArea.value = text;
                    document.body.appendChild(textArea);
                    textArea.focus();
                    textArea.select();
    
                    try {
                        let successful = document.execCommand('copy');
                        if (successful == true) {
                            //console.log("复制输入框的值",textArea.value)
                            this.$message.success("复制成功!");
                        } else {
                            this.$message.success("该浏览器不支持点击复制到剪贴板");
                        }
                    } catch (err) {
                        alert('该浏览器不支持点击复制到剪贴板');
                    }
                    document.body.removeChild(textArea);
                },
    

    相关文章

      网友评论

          本文标题:JavaScript 将文字复制到剪贴板

          本文链接:https://www.haomeiwen.com/subject/smzilctx.html