html将内容复制到剪贴板

 var link = "https//www.test.com/shared?key=" + shareddata;
            const input = document.createElement('input');
            document.body.appendChild(input);
            input.setAttribute('value', link);
            input.select();
            if (document.execCommand('copy')) {
                document.execCommand('copy');
                layer.msg("复制成功,请手动分享链接")
            }
            document.body.removeChild(input);
上一篇:Java在linux服务器上执行shell命令


下一篇:20 行 JS 代码,实现复制到剪贴板功能