ZZ【Javascript】复制文本到剪切板(chrome)

时间:2022-01-27 18:36   作者:ChenReal    阅读:113

嗯,这东东,也许时不时会用上,收藏起来免得以后到处找。

采用 textarea存放文本内容

function copyToClipboard(text){
	const el = document.createElement('textarea' );
	el.value = text;
	document. body. appendChild(el);
	el. focus();
	el.select();
	document.execCommand('copy');
	document. body. removeChild(el);
}

采用navigator.clipboard.writeText复制文本内容

navigator.clipboard.writeText('123');

 

评论
0/200