正则过滤html的标签

 $('#Text').find('br').remove();//移除br标签
let content = $('#smsText').html().replace(/ /g, ' ').replace(/&/g, '&')
.replace(/<\/?[^>]*>/g,'')//过滤html的标签
.replace(/&lt;/g, '<').replace(/&gt;/g, '>')
上一篇:MMU——存储器管理单元


下一篇:过滤字符串html标签方法