Vue —— 复制文本

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

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

posted @ 2018-12-18 11:13  cnloop  阅读(1743)  评论(0编辑  收藏  举报