点击复制操作
代码如下:
<Tooltip title="点击复制">
<a onClick={() => copyText(`${'212121dsaf'}`)}><Icon type="copy" /></a>
</Tooltip>
<input type="text" id="copy" style={{ opacity: 0, height: 0 }} />
复制事件:
const copyText = (text) => {
const input = document.querySelector('#copy');
input.value = text;
input.select();
if (document.execCommand('copy')) {
message.success('复制成功');
} else {
message.error('复制失败');
}
};