我有一个字符串和子字符串,我想获取该字符串中子字符串的第一个索引,我string.indexOf
用于此目的,但是当有 html 标签时,它总是返回-1
。我在 CKEDITOR 工作
请提出任何方法。
(来自评论)
我正在谈论这件事str = "<html><head><body><p>hello</p><p>world</p><body> </head></html>"; sub_str = "<p>hello</p><p>world</p>";
现在str.indexOf(sub_str)
将返回 -1