這篇文章帶給大家的內容是關於vue2中實現搜尋結果中關鍵字高亮的程式碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
// 篩選變色
brightenKeyword(val, keyword) { val = val + ''; if (val.indexOf(keyword) !== -1 && keyword !== '') { return val.replace(keyword, '<font color="#409EFF">' + keyword + '</font>') } else { return val } }
// 使用方法
<el-table-column label="维护内容"> <template slot-scope="scope"> <span v-html="brightenKeyword(scope.row.strContent, filters.strContent)" ></span> </template> </el-table-column>
開源專案位址: https://github.com/alex-0407/...
相關推薦:
用JS將搜尋的關鍵字高亮顯示實作程式碼_javascript技巧
以上是vue2中實作搜尋結果中關鍵字高亮的程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!