uniapp 过滤html标签

uniapp 过滤html标签

var msg = (res.data.msg).replace(/<\/?[^>]*>/g, ''); //去除HTML Tag
msg = msg.replace(/[|]*\n/, ''); //去除行尾空格
this.content= msg.replace(/ /gi, ''); //去掉nbsp

你可能感兴趣的:(uniapp 过滤html标签)