在AngularJS中突出显示过滤的结果

前端之家收集整理的这篇文章主要介绍了在AngularJS中突出显示过滤的结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用ng-repeat和过滤器在angularJS像手机教程,但我想突出显示页面中的搜索结果。使用基本的jQuery我会简单地解析页面上的键上的输入,但我想做它的角度方式。有任何想法吗 ?

我的代码

<input id="search" type="text" placeholder="Recherche DCI" ng-model="search_query" autofocus>
<tr ng-repeat="dci in dcis | filter:search_query">
            <td class='marque'>{{dci.marque}} ®</td>
            <td class="dci">{{dci.dci}}</td>
 </tr>
在那里为AngularJS v1.2

HTML:

<span ng-bind-html="highlight(textToSearchThrough,searchText)"></span>

JS:

$scope.highlight = function(text,search) {
    if (!search) {
        return $sce.trustAsHtml(text);
    }
    return $sce.trustAsHtml(text.replace(new RegExp(search,'gi'),'<span class="highlightedText">$&</span>'));
};

CSS:

.highlightedText {
    background: yellow;
}
原文链接:https://www.f2er.com/angularjs/146381.html

猜你在找的Angularjs相关文章