我有一个小文本节点:
var node
我想在每次出现的“lol”周围加上一个跨度。
node.nodeValue = node.nodeValue.replace(/lol/, "<span>lol</span>")
"<span>lol<span>"
当我想要"lol"
作为跨度元素时,它会打印出来。
我有一个小文本节点:
var node
我想在每次出现的“lol”周围加上一个跨度。
node.nodeValue = node.nodeValue.replace(/lol/, "<span>lol</span>")
"<span>lol<span>"
当我想要"lol"
作为跨度元素时,它会打印出来。
Andreas Josas 给出的答案相当不错。然而,当搜索词在同一个文本节点中出现多次时,代码有几个错误。这是修复了这些错误的解决方案,此外,插入被分解为 matchText 以便于使用和理解。现在只有新标签在回调中构造并通过返回传递回 matchText。
更新了带有错误修复的 matchText 函数:
var matchText = function(node, regex, callback, excludeElements) {
excludeElements || (excludeElements = ['script', 'style', 'iframe', 'canvas']);
var child = node.firstChild;
while (child) {
switch (child.nodeType) {
case 1:
if (excludeElements.indexOf(child.tagName.toLowerCase()) > -1)
break;
matchText(child, regex, callback, excludeElements);
break;
case 3:
var bk = 0;
child.data.replace(regex, function(all) {
var args = [].slice.call(arguments),
offset = args[args.length - 2],
newTextNode = child.splitText(offset+bk), tag;
bk -= child.data.length + all.length;
newTextNode.data = newTextNode.data.substr(all.length);
tag = callback.apply(window, [child].concat(args));
child.parentNode.insertBefore(tag, newTextNode);
child = newTextNode;
});
regex.lastIndex = 0;
break;
}
child = child.nextSibling;
}
return node;
};
用法:
matchText(document.getElementsByTagName("article")[0], new RegExp("\\b" + searchTerm + "\\b", "g"), function(node, match, offset) {
var span = document.createElement("span");
span.className = "search-term";
span.textContent = match;
return span;
});
如果您希望插入锚(链接)标签而不是 span 标签,请将 create 元素更改为“a”而不是“span”,添加一行以将 href 属性添加到标签,并将“a”添加到 excludeElements列表,以便不会在链接内创建链接。
以下文章为您提供了用 HTML 元素替换文本的代码:
http://blog.alexanderdickson.com/javascript-replacing-text
来自文章:
var matchText = function(node, regex, callback, excludeElements) {
excludeElements || (excludeElements = ['script', 'style', 'iframe', 'canvas']);
var child = node.firstChild;
do {
switch (child.nodeType) {
case 1:
if (excludeElements.indexOf(child.tagName.toLowerCase()) > -1) {
continue;
}
matchText(child, regex, callback, excludeElements);
break;
case 3:
child.data.replace(regex, function(all) {
var args = [].slice.call(arguments),
offset = args[args.length - 2],
newTextNode = child.splitText(offset);
newTextNode.data = newTextNode.data.substr(all.length);
callback.apply(window, [child].concat(args));
child = newTextNode;
});
break;
}
} while (child = child.nextSibling);
return node;
}
用法:
matchText(document.getElementsByTagName("article")[0], new RegExp("\\b" + searchTerm + "\\b", "g"), function(node, match, offset) {
var span = document.createElement("span");
span.className = "search-term";
span.textContent = match;
node.parentNode.insertBefore(span, node.nextSibling);
});
以及解释:
本质上,正确的做法是……</p>
- 遍历所有文本节点。
- 在文本节点中查找子字符串。
- 在偏移处拆分它。
- 在拆分之间插入一个 span 元素。
不是说这是一个更好的答案,但我发布了我为完整性所做的事情。就我而言,我已经查找或确定了我需要在特定 #text 节点中突出显示的文本的偏移量。这也阐明了步骤。
//node is a #text node, startIndex is the beginning location of the text to highlight, and endIndex is the index of the character just after the text to highlight
var parentNode = node.parentNode;
// break the node text into 3 parts: part1 - before the selected text, part2- the text to highlight, and part3 - the text after the highlight
var s = node.nodeValue;
// get the text before the highlight
var part1 = s.substring(0, startIndex);
// get the text that will be highlighted
var part2 = s.substring(startIndex, endIndex);
// get the part after the highlight
var part3 = s.substring(endIndex);
// replace the text node with the new nodes
var textNode = document.createTextNode(part1);
parentNode.replaceChild(textNode, node);
// create a span node and add it to the parent immediately after the first text node
var spanNode = document.createElement("span");
spanNode.className = "HighlightedText";
parentNode.insertBefore(spanNode, textNode.nextSibling);
// create a text node for the highlighted text and add it to the span node
textNode = document.createTextNode(part2);
spanNode.appendChild(textNode);
// create a text node for the text after the highlight and add it after the span node
textNode = document.createTextNode(part3);
parentNode.insertBefore(textNode, spanNode.nextSibling);
您可能需要node
成为父节点,这样您就可以使用 innerHTML:
node.innerHTML=node.childNodes[0].nodeValue.replace(/lol/, "<span>lol</span>");
这里node.childNodes[0]
指的是实际的文本节点,node
是它的包含元素。
对于现在发现此问题的人的最新答案如下:
function textNodeInnerHTML(textNode,innerHTML) {
var div = document.createElement('div');
textNode.parentNode.insertBefore(div,textNode);
div.insertAdjacentHTML('afterend',innerHTML);
div.remove();
textNode.remove();
}
这个想法是在 using 之前插入一个新创建的 html 元素(比如说var div = document.createElement('div');
)textNode
:
textNode.parentNode.insertBefore(div,textNode);
然后使用:
div.insertAdjacentHTML(
'afterend',
textNode.data.replace(/lol/g,`<span style="color : red">lol</span>`)
)
然后删除textNode
并div
使用:
textNode.remove();
div.remove();
insertAdjacentHTML
不会像 那样破坏事件侦听器innerHTML
。
如果要查找所有文本节点的后代,请elm
使用:
[...elm.querySelectorAll('*')]
.map(l => [...l.childNodes])
.flat()
.filter(l => l.nodeType === 3);