码迷,mamicode.com
首页 > 其他好文 > 详细

vue - 一键复制,不用插件

时间:2020-06-18 17:50:26      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:value   display   var   vue   isp   man   赋值   message   style   

 copy(text) {
            var Input = document.createElement(‘input‘); //创建一个隐藏input(重要!)
            Input.value = text; //赋值
            document.body.appendChild(Input);
            Input.select(); // 选择对象
            document.execCommand(‘Copy‘); // 执行浏览器复制命令
            Input.className = ‘oInput‘;
            Input.style.display = ‘none‘;
            this.$message({ message: ‘复制成功‘, type: ‘success‘ });
        },

vue - 一键复制,不用插件

标签:value   display   var   vue   isp   man   赋值   message   style   

原文地址:https://www.cnblogs.com/gggggggxin/p/13158819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!