vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > vue 指定文字高亮

vue 指定文字高亮的实现示例

作者:廊坊吴彦祖

在做文字处理的项目时经常会遇到搜索文字并高亮的需求,本文就来介绍vue 指定文字高亮的实现示例,具有一定的参考价值,感兴趣的可以了解一下

自定义指令

除了核心功能默认内置的指令 (v-model 和 v-show),Vue 也允许注册自定义指令。注意,在 Vue2.0 中,代码复用和抽象的主要形式是组件。然而,有的情况下,你仍然需要对普通 DOM 元素进行底层操作,这时候就会用到自定义指令

钩子函数

一个指令定义对象可以提供如下几个钩子函数 (均为可选):

指令钩子函数会被传入以下参数:

自定义指令:指定文字高亮

创建自定义指令

在项目 src 目录下创建自定义指令目录 directives ,并在目录下创建 index.js 和 directives.js 文件

在这里插入图片描述

index.js:

/*
 * @Description: 自定义指令
 */
import directives from './directives';

export default {
  	install(Vue) {
    	Object.keys(directives).forEach((key) => {
      		Vue.directive(key, directives[key]);
    	})
 	},
}

directives.js:

/**
 * @desc 指定文字高亮指令
 * @param hText 需要高亮的文字
 * @param text 全部文字
 * @param color 高亮文字的颜色
 */
const textLight = {
  	bind(el, binding, vnode) {
    	const { value } = binding;
    	if (value && typeof value === 'object') {
     	 	const { hText, text, color } = value;
    		el.innerHTML = text.replace(new RegExp(hText, 'ig'), (t) => {
      	  		return `<span style="color: ${color}">${t}</span>`;
	     	});
   		}
 	},
  	update(el, binding, vnode) {
	    const { value } = binding;
	    if (value && typeof value === 'object') {
	      	const { hText, text, color } = value;
	      	el.innerHTML = text.replace(new RegExp(hText, 'ig'), (t) => {
	        	return `<span style="color: ${color}">${t}</span>`;
	      	});
	    }
    },
};

export default {
  	textLight
};

main.js:

......

import Directives from './directives';
Vue.use(Directives);

使用自定义指令

<template>
  	<div class="demo">
   	 	<p v-textLight="{ hText: hText1, text: text, color: color }"></p>
    	<p v-textLight="{ hText: hText2, text: text, color: color }"></p>
  	</div>
</template>

<script>
export default {
  	data() {
    	return {
      		hText1: '自定义指令', // 一个高亮文字
      		hText2: '核心|自定义指令', // 多个高亮文字
      		text: '除了核心功能默认内置的指令 (v-model 和 v-show),Vue 也允许注册自定义指令。',
      		color: '#c7254e'
    	}
  	}
}
</script>

效果

在这里插入图片描述

到此这篇关于vue 指定文字高亮的实现示例的文章就介绍到这了,更多相关vue 指定文字高亮内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文