美文网首页
vue数据搜索结果高亮

vue数据搜索结果高亮

作者: 等级7 | 来源:发表于2022-06-27 09:46 被阅读0次

tem.name=原本的搜索结果

inputVal=搜索的内容

缺点:只能高亮第一个搜索结果

```

<a class="text">

<span>{{item.name.slice(0,item.name.toLowerCase().indexOf(inputVal.toLowerCase()))}}</span>

<span style="color:#2A70FE">{{item.name.slice(item.name.toLowerCase().indexOf(inputVal.toLowerCase()),item.name.toLowerCase().indexOf(inputVal.toLowerCase())+inputVal.length)}}</span>

<span>{{item.name.substr(item.name.toLowerCase().indexOf(inputVal.toLowerCase())+inputVal.length)}}</span>

 </a>

```

相关文章

网友评论

      本文标题:vue数据搜索结果高亮

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