https://github.com/bvaughn/react-highlight-words
在线demo
https://bvaughn.github.io/react-highlight-words/
yarn add react-highlight-words
import React from "react";import Highlighter from "react-highlight-words";function App() {return (<HighlighterhighlightClassName="YourHighlightClass" // 高亮的样式searchWords={["and", "or", "the"]} // 搜索关键词autoEscape={true}textToHighlight="The dog is chasing the cat. Or perhaps they're just playing?"/>)}export default App;
