300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > js实现复制并能保留原格式粘贴

js实现复制并能保留原格式粘贴

时间:2022-05-26 05:56:14

相关推荐

js实现复制并能保留原格式粘贴

使用textarea能粘贴的时候保留原格式。

使用input粘贴的时候格式会丢失。

const input = document.createElement('textarea');document.body.appendChild(input);input.value = “复制我呀”;// input.setAttribute('value', "复制我呀");input.select();if (document.execCommand('copy')) {document.execCommand('copy');console.log('复制成功');}document.body.removeChild(input);

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。