Angularjs实现搜索关键字高亮显示效果
需求分析:
根据关键字搜索网页内容,并且高亮显示内容中的关键字
细节分析:
1、每次执行搜索操作,需清空上一次结果
2、需区分html标签和正常文本内容,否则为关键字添加样式以后会出现标签内容被显示的情况
代码思路:
利用正则表达式匹配关键字
使用javascript字符串替换的方式,将关键字替换成<spanclass='red'>关键字</span>
为了避免出现当关键字为'p'时候,将标签<p>替换成<<span>p</span>>……等等的情况
所有匹配和替换操作只针对当前DOM元素中文本节点,通过递归函数遍历操作所有节点
前端框架:
angularjs^1.2.9
$scope.myData='<div>woshihight<h2>womei<b>bbb</b>shihigh<span>haha</span></h2><span>1000pxhight</span><ul><li>1high</li><li>2hightspanlighthight<p></li></ul><ahref="index.html">这个是链接地址hight</a></div>'; $scope.myDataCp=angular.copy($scope.myData); $scope.key=''; $scope.searchKey=function(){ if($scope.key!=''){ searchHighLight($scope.key); } } functionsearchHighLight(key){ var_element=angular.element($scope.myDataCp); nodeRecursion(_element[0],key); var_htmlStr=_element[0].innerHTML.toString(); _htmlStr=_htmlStr.replace(/_1000px_/g,'<spanclass="red">').replace(/_xp0001_/g,'</span>'); $scope.myData=_htmlStr; } //循环遍历替换所有文本节点内容 functionnodeRecursion(e,key){ varreg=newRegExp(key,'g'); var_count=e.childNodes.length; for(var_i=0;_i<_count;_i++){ if(e.childNodes.item(_i).nodeType==3){ var_str=e.childNodes.item(_i).data; if(_str.indexOf(key)!=-1){ _str=_str.replace(reg,'_1000px_'+key+'_xp0001_'); } e.childNodes.item(_i).data=_str; }else{ nodeRecursion(e.childNodes.item(_i),key); } } }
其他说明:
searchKey//点击搜索按钮调用该方法
$scope.myData中的html字符串必须有一个根节点,比如这里的div
html页面中加载该html字段需要ng-bind-html指令,该指令需要加载ngSanitize模块
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持毛票票!