js 实现一键复制

                    const textArea = document.createElement('textarea');

                    textArea.value = '想要复制的值';

                    document.body.appendChild(textArea);

                    textArea.select();

                    try {

                        document.execCommand('copy') ? alert('copy success') : alert('copy falied');

                    } catch (err) {

                        alert('copy falied');

                    }

                    document.body.removeChild(textArea);

你可能感兴趣的:(js 实现一键复制)