js正则表达式替换HTML标签以及空格( )
参考:范仁义
js代码:
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。function filter(text) { var reg = /<[^<>]+>/g;//1、全局匹配g肯定忘记写,2、<>标签中不能包含标签实现过滤HTML标签 text = text.replace(reg, '');//替换HTML标签 text = text.replace(/ /ig, '');//替换HTML空格 return text; };
在angularJS中使用过滤器过滤富文本数据
app.filter('qxhtml', function () {
return function (text) {
var reg = /<[^<>]+>/g;
text = text.replace(reg, '');
text = text.replace(/ /ig, '');
if (text.length > 50) {
text = text.substring(0, 50) + "...";
}
return text;
};
});
使用过滤器
<div class="desc"> {{y.Description| qxhtml}} </div>
更多精彩

