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

Vue —— 复制文本

时间:2018-12-18 12:17:28      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:com   value   http   only   tee   asc   net   OLE   read   

copyText() {
    const input = document.createElement("input");
    input.setAttribute("readonly", "readonly");
    input.setAttribute("value", "hello world");
    document.body.appendChild(input);
    input.setSelectionRange(0, 9999);
    if (document.execCommand("copy")) {
        document.execCommand("copy");
        console.log("复制成功");
    }
    document.body.removeChild(input);
}

链接:https://www.jb51.net/article/135605.htm

Vue —— 复制文本

标签:com   value   http   only   tee   asc   net   OLE   read   

原文地址:https://www.cnblogs.com/cnloop/p/10135928.html

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