js 复制文本,保留换行符

一般的js复制就是用input标签,然后copy

但是

input是不会保留换行符的

所以,可以采用textarea标签

const input = document.createElement('textarea')
// input.setAttribute('value', this.copyDoc) // 注意,这样写不行
input.value = this.doc
document.body.appendChild(input)
input.select()
document.execCommand('Copy')
document.body.removeChild(input)

注意:用setAttribute方式赋值value不行

 

关于markdown文档格式, 说一句,将换行符\n修改成
,能换行,但是文档也不会解析了,文档需要的是,实质上的换行,才能解析

你可能感兴趣的:(复制换行,js)