vue 搜索结果高亮

这个是方法,无视大小写,this.allStandard是我这里搜索的关键词

                    //搜索关键字高亮
                    filterKeyLight(text){
                        const Reg = new RegExp(this.allStandard.toUpperCase(), 'i');
                        if(text){
                            return text.replace(Reg, `${this.allStandard.toUpperCase()}`);
                        }
                    },

把方法放在显示结果的span里 用v-html调用,参数是搜索结果


vue 搜索结果高亮_第1张图片
高亮

你可能感兴趣的:(vue 搜索结果高亮)