提问人:Mohit Sharma 提问时间:12/30/2022 最后编辑:Mohit Sharma 更新时间:1/2/2023 访问量:99
我有一个 HTML 字符串,我正在使用 interweave 解析它。如果有匹配的字符/字符串,我想向 html 字符串添加一个 span 标签
I have an HTML string which i am parsing using interweave. I want to add a span tag to the html string if there is a matching character/string
问:
我正在实现一个需要突出显示搜索字符串的功能。 该功能适用于“作业”响应,但不适用于“描述”
Data.Job='Diver' Data.Description="'<div>Diver</div><br><table><tr>Deep Ocean Diver</tr></table>'"
highlightSearchedString (text,highlight){
if(text && highlight) {
const parts = text.split(new RegExp(`(${highlight})`, 'gi'));
const node = <span>
{
parts.map((part, i) => <span key={i} style={part.toLowerCase() === highlight.toLowerCase() ? {backgroundColor: "yellow" } : {}}>{part}</span>)
}
</span>
return node;
}
return text;
}
Data.Description="'<div><span={backgroundColor: "yellow"}>Diver</span></div><br><table><tr>Deep Ocean <span style={backgroundColor: "yellow"}>Div</span>er</tr></table>'"
<div>{highlightSearchedString((Data.Job,'DIV')} </div> //working
<Interweave content={highlightSearchedString(Data.description,'DIV')}></Interweave> //not working
答: 暂无答案
评论