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 (
<Highlighter
highlightClassName="YourHighlightClass" // 高亮的样式
searchWords={["and", "or", "the"]} // 搜索关键词
autoEscape={true}
textToHighlight="The dog is chasing the cat. Or perhaps they're just playing?"
/>
)
}
export default App;