点击元素复制到剪贴板

12/1/2021 JsHooks

# 点击复制到剪贴板自定义元素

    /**
     * needCopyEle 被复制的对象
     */
    function copyText() {
        const needCopyEle = document.querySelector("#needCopy");
        needCopyEle.select(); // 选择对象
        document.execCommand("Copy"); // 执行浏览器复制命令
        alert("已复制到剪贴板");
    }
1
2
3
4
5
6
7
8
9

# 复制当前元素

    /**
     * copy当前元素的内容
     * param: this
     */
    function copyText(_this) {
        // const needCopyEle = document.querySelector("#needCopy");
        _this.select(); // 选择对象
        document.execCommand("Copy"); // 执行浏览器复制命令
        alert("已复制到剪贴板");
    }
1
2
3
4
5
6
7
8
9
10
Last Updated: 12/11/2021, 2:50:47 PM