美文网首页
copy到剪切板

copy到剪切板

作者: 艾希_可可 | 来源:发表于2019-10-08 17:11 被阅读0次

    copyUrl是变量
    直接copy变量的值到剪切板
    var url = 'https://zcb.liansdk.com/#/newuploadzcb?id=' + params.row.id
    this.copyUrl = url
    this.copyContent()

                copyContent() {
                        const input = document.createElement('input');
                        document.body.appendChild(input);
                        input.setAttribute('value', this.copyUrl);
                        input.select();
                        if (document.execCommand('copy')) {
                            document.execCommand('copy');
                            console.log('复制成功');
                        }
                        document.body.removeChild(input);
    
                }
    

    相关文章

      网友评论

          本文标题:copy到剪切板

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