如何使用 html 标签将文本包装在多个节点内

How to wrap text inside multiple nodes with a html tag

我正在使用 contenteditable 并尝试创建一个简单的编辑器。不幸的是我不能使用 document.execCommand() 并且必须自己实现它。我在这里想做的是,如果用户按下粗体按钮,我想将文本设为粗体。我在下面编写的代码工作起作用,但是只有在选择为一个节点而不是多个节点时才有效。

document.getElementById("bold").onclick = function() {
  var selection = document.getSelection(),
      range = selection.getRangeAt(0).cloneRange();
  range.surroundContents(document.createElement("b"));
  selection.removeAllRanges();
  selection.addRange(range);
}
<div contenteditable="true" id="div">This is the editor. If you embolden only **this**, it will work. But if you try to embolden **this <i>and this**</i>, it will not work because they are in different nodes</div>
<button id="bold">Bold</button>

我的问题是:有没有一种解决方案可以让我单击粗体,即使它们位于不同的节点中,它也可以加粗文本?如果是这样,我该怎么做?我正在寻找简单而优雅的东西,但如果它必须复杂,我将不胜感激对代码的一些解释。非常感谢。

这既不简单也不优雅,但按预期工作,没有额外的标记,是我能想到的最好的。

基本上就是要遍历与选择范围相交的dom树,遍历时只收集由文本节点组成的子范围。

查看 Range documentation 以获取有关 startContainerendContainer 的信息。 简而言之,在选择单个文本节点时它们是相同的,否则它们会为您提供遍历的起点和终点。

收集完这些范围后,您可以将它们包装在您喜欢的标签中。

它工作得很好但不幸的是我无法在加粗后保留初始选择(用 selection.setRange(..) 尝试了所有但没有运气):

document.getElementById("bold").onclick = function() {
    var selection = document.getSelection(),
    range = selection.getRangeAt(0).cloneRange();
    // start and end are always text nodes
    var start = range.startContainer;
    var end = range.endContainer;
    var ranges = [];

    // if start === end then it's fine we have selected a portion of a text node
 while (start !== end) {

        var startText = start.nodeValue;
        var currentRange = range.cloneRange();
        // pin the range at the end of this text node
        currentRange.setEnd(start, startText.length);
        // keep the range for later
        ranges.push(currentRange);

        var sibling = start;
        do {
            if (sibling.hasChildNodes()) {
                // if it has children then it's not a text node, go deeper
                sibling = sibling.firstChild;
            } else if (sibling.nextSibling) {
                // it has a sibling, go for it
                sibling = sibling.nextSibling;
            } else {
                // we're into a corner, we have to go up one level and go for next sibling
                while (!sibling.nextSibling && sibling.parentNode) {
                    sibling = sibling.parentNode;
                }
                if (sibling) {
                    sibling = sibling.nextSibling;
                }
            }
        } while (sibling !== null && sibling.nodeValue === null);
        if (!sibling) {
            // out of nodes!
            break;
        }
        // move range start to the identified next text node (sibling)
        range.setStart(sibling, 0);
        start = range.startContainer;
 }
    // surround all collected range by the b tag
    for (var i = 0; i < ranges.length; i++) {
        var currentRange = ranges[i];
       currentRange.surroundContents(document.createElement("b"));
    }
    // surround the remaining range by a b tag
    range.surroundContents(document.createElement("b"));

    // unselect everything because I can't presere the original selection
    selection.removeAllRanges();

}
<div contenteditable="true" id="div">This is the editor. If you embolden only **this**, it will work. If you try <font color="red">to embolden **this <i>and this**</i>, it will work <font color="green">because</font> we are traversing the</font> nodes<table rules="all">
<tr><td>it</td><td>will<td>even</td><td>work</td></tr>
<tr><td>in</td><td>more</td><td>complicated</td><td><i>markup</i></td></tr>
</table></div>
<button id="bold">Bold</button>

function makeItBold() {
 const x = document.querySelectorAll(".selected");
 for (let i = 0; i < x.length; i++) {
     x[i].style.fontWeight = "bold"
 }
}

function makeItNormal() {
 const x = document.querySelectorAll(".selected");
 for (let i = 0; i < x.length; i++) {
     x[i].style.fontWeight = "normal"
        x[i].style.fontStyle = "normal"
 }
}

function makeItItalic() {
 const x = document.querySelectorAll(".selected");
 for (let i = 0; i < x.length; i++) {
     x[i].style.fontStyle = "italic"
 }
}
<!DOCTYPE html>
<html>
<body>

<h4>A simple demonstration:</h4>

<button onclick="makeItBold()">Bold</button>
<button onclick="makeItNormal()">Normal</button>
<button onclick="makeItItalic()">Italic</button>

<p class="selected">Test me out</p>

</body>
</html>