https://github.com/bvaughn/react-highlight-words

    在线demo
    https://bvaughn.github.io/react-highlight-words/
    image.png

    1. yarn add react-highlight-words
    1. import React from "react";
    2. import Highlighter from "react-highlight-words";
    3. function App() {
    4. return (
    5. <Highlighter
    6. highlightClassName="YourHighlightClass" // 高亮的样式
    7. searchWords={["and", "or", "the"]} // 搜索关键词
    8. autoEscape={true}
    9. textToHighlight="The dog is chasing the cat. Or perhaps they're just playing?"
    10. />
    11. )
    12. }
    13. export default App;