美文网首页大前端开发
搜索关键字高亮显示

搜索关键字高亮显示

作者: 孤寂听雨 | 来源:发表于2019-05-15 17:39 被阅读1次
const searchKeyword = new RegExp(value,'ig');//value为输入的值,用正则转换成忽略大小
//data为文本内容,用忽略了大小写的搜索关键字把文本内容拆分为数组,再把高亮后的搜索关键字插入数组
data.split(searchKeyword).reduce((prevResult,current_item,index)=>{
  return (
     <span>
       <span>{prevResult}</span>
       <span className={styles.highLight}>{data.match(searchKeyword)[index-1]}</span>
       <span>{current_item}</span>
     </span>
  )
})

相关文章

网友评论

    本文标题:搜索关键字高亮显示

    本文链接:https://www.haomeiwen.com/subject/wejmaqtx.html