Vue3实现表格搜索内容高亮

采用html拼接

v-html 指令用来将给定的 HTML 字符串直接渲染到页面上

javascript 复制代码
<template>
  <div>
    <!-- 搜索框 -->
    <input v-model="searchText" placeholder="搜索内容" />

    <!-- 表格 -->
    <el-table :data="tableData" style="width: 100%" @row-click="handleRowClick">
      <el-table-column label="Content" prop="content">
        <template #default="{ row }">
          <!-- 使用 v-html 渲染含有高亮部分的 HTML -->
          <span v-html="getHighlightedContent(row.content)"></span>
        </template>
      </el-table-column>
    </el-table>
  </div>
</template>

<script lang="ts" setup>
  import { ref } from 'vue';

  // 响应式数据
  const searchText = ref('');
  const tableData = ref([
    { id: 1, content: '创建人:李四<br>创建时间:2025-01-11 10:24:00<br>' },
    { id: 2, content: '创建人:张三<br>创建时间:2025-01-12 11:25:00<br>' },
  ]);

  // 根据搜索文本匹配并返回高亮内容
  function getHighlightedContent(content: string) {
    if (!searchText.value) {
      return content; // 如果没有输入搜索文本,直接返回原内容
    }

    const regex = new RegExp(`(${escapeRegExp(searchText.value)})`, 'gi');
    let highlightedContent = content.replace(regex, '<span style="color: rgb(109,172,246); font-weight: bold;">\$1</span>');

    return highlightedContent;
  }

  // 用来转义搜索文本中的特殊字符,避免正则错误
  function escapeRegExp(string: string) {
    return string.replace(/[.*+?^=!:${}()|\[\]\/\\]/g, '\\$&');
  }
</script>

<style scoped>
  /* 你可以根据需要添加其他样式 */
</style>
(1)getHighlightedContent 函数
javascript 复制代码
function getHighlightedContent(content: string) {
  if (!searchText.value) {
    return content; // 如果没有输入搜索文本,直接返回原内容
  }

  const regex = new RegExp(`(${escapeRegExp(searchText.value)})`, 'gi');
  let highlightedContent = content.replace(regex, '<span style="color: rgb(109,172,246); font-weight: bold;">\\$1</span>');

  return highlightedContent;
}
  • 这个函数接收一个字符串 content,并根据 searchText 中的文本进行高亮显示。
  • 步骤
    • 如果 searchText 为空,直接返回原内容。
    • 创建一个正则表达式,用于匹配 searchText 中的所有文本(不区分大小写)。
    • 使用 content.replace() 方法,找到所有匹配的文本并用 <span> 标签包裹,同时设置样式(字体加粗,颜色改变)。
    • 返回高亮后的 HTML 字符串。
(2)escapeRegExp 函数
javascript 复制代码
function getHighlightedContent(content: string) {
  if (!searchText.value) {
    return content; // 如果没有输入搜索文本,直接返回原内容
  }

  const regex = new RegExp(`(${escapeRegExp(searchText.value)})`, 'gi');
  let highlightedContent = content.replace(regex, '<span style="color: rgb(109,172,246); font-weight: bold;">\\$1</span>');

  return highlightedContent;
}
  • 这个函数用于转义 searchText 中的特殊字符,避免它们在构建正则表达式时引起错误。
  • 正则表达式中的一些字符(如 .*? 等)具有特殊含义,因此需要通过 escapeRegExp 函数将它们转义,以确保它们能被正确地作为普通字符匹配。
相关推荐
lally.12 分钟前
2025-1-21 Newstar CTF web week1 wp
前端
16年上任的CTO17 分钟前
一文大白话讲清楚webpack基本使用——2——css相关loader的配置和使用
前端·webpack·node.js·sass-loader·css-loader·style-loader
离别又见离别23 分钟前
vue3-sfc-loader 加载远程.vue文件(sfc)案例
java·前端·vue.js
BillKu26 分钟前
在Vue中,<img> 标签的 src 值
vue.js
web1478621072329 分钟前
海康威视摄像头ISUP(原EHOME协议) 摄像头实时预览springboot 版本java实现,并可以在浏览器vue前端播放(附带源码)
java·前端·spring boot
凡大来啦1 小时前
Axios发起HTTP请求时的先后执行顺序
前端·javascript·http
Jason秀啊1 小时前
前端面试题-问答篇-5万字!
前端·面试·前端面试
傻小胖1 小时前
react中hooks之 React 19 新 Hooks useActionState & useFormStatus用法总结
前端·react.js·前端框架
ᥬ 小月亮1 小时前
Js:DOM中的样式(包含行内样式、滚动样式、可见区域样式等)
开发语言·javascript·ecmascript
16年上任的CTO1 小时前
一文大白话讲清楚webpack基本使用——4——vue-loader的配置和使用
前端·javascript·webpack·ecmascript·vue-loader·vueloaderplugin