美文网首页
vue 搜索结果匹配关键字高亮

vue 搜索结果匹配关键字高亮

作者: 赵羽珩 | 来源:发表于2020-04-23 16:08 被阅读0次
image.png
<input ref="searchInput" v-model="inputVal" type="text" placeholder="搜索目的地" />

需要替换的地方inputValitem.name

<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>

相关文章

网友评论

      本文标题:vue 搜索结果匹配关键字高亮

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