首页 前端知识 html 识别文本中的\n 进行换行

html 识别文本中的\n 进行换行

2024-05-28 09:05:09 前端知识 前端哥 296 811 我要收藏

文本内容有 \n ,怎么换行?

1. v-html渲染

使用正则将 \n 替换成 <br />标签,再用v-html渲染
 

this.content = value.replace(/\n/g,'<br>')

<div v-html="this.content"></div>

2.使用css的white-space 

<div style="white-space: pre-wrap;">{{text}}</div>

 

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9811.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!