參考:範仁義 js代碼: 在angularJS中使用過濾器過濾富文本數據 使用過濾器 ...
參考:範仁義
js代碼:
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>