javascript - 在 contenteditable div 中用 html 替换某些最后输入的单词

标签 javascript jquery range selection wysihtml5

我正在尝试在用户键入时用超链接动态替换内容可编辑的 div 中的某些关键字。我通过首先用“”拆分整个字符串,然后抓取最近的单词,如果它是我的关键字之一,我可以在整个字符串中找到开始索引和结束索引,然后执行以下操作:

range.setStart(myDiv.firstChild, startOfWordIndex);
range.setEnd(myDiv.firstChild, endOfWordIndex);
range.deleteContents();
range.insertNode(...);

我要插入的节点是我创建的超链接,但为了简洁起见没有在此处全部输入。

我的问题是,插入该节点后,我不能再在我的 setStart() 方法中使用 myDiv.firstChild,因为我在用户输入的位置前面有新的节点。

这是我第一次尝试内容可编辑的 html,所以我不确定如何获取最后一个节点,也不确定使用我的单词的开始和结束索引无论如何都能在那里工作,因为它们是基于整个节点的div 内容的长度。

如有任何帮助,我们将不胜感激。

最佳答案

睡了一会后,我自己解决了这个问题:大量评论以防万一可以帮助别人。

function replaceLastWordWithLink(editContent) {
    var selection, selectedRange, range, node, frag, el, selectionText, wordStart, wordEnd, currentWord;
    // set the selection
    selection = window.getSelection();
    // set the range by the cursor
    selectedRange = selection.getRangeAt(0);
    // set the "global" range
    range = document.createRange();
    // get all node contents of global range
    range.selectNodeContents(editContent);
    // get the node the cursor is in
    node = selectedRange.startContainer;
    // point the global range to node the cusor is in and start of 0
    range.setStart(node, 0);
    // point the global range to node the cursor is in and end of where cursor is
    range.setEnd(node, selectedRange.startOffset);
    // create the fragment for the contents
    frag = range.cloneContents();
    // create a pseudo element to place the fragment in
    el = document.createElement("span");
    // place fragment in pseudo element
    el.appendChild(frag);
    // get the text from the pseduo element
    selectionText = el.innerText;
    // pattern to see if there are spaces
    spacePattern = /\s/;
    if (!spacePattern.test(selectionText)) {
        // no spaces so the start of the word index is at 0
        wordStart = 0;
        // no spaces so end of the word index is just where the cusor is (the total length of the text)
        wordEnd = selectionText.length;
    } else {
        // split off the last word in the text
        currentWord = selectionText.split(/\s/).reverse()[0].toLowerCase();
        // get the start of the word's index in the string
        wordStart = selectionText.lastIndexOf(currentWord);
        // get the end of the word's index by adding start of word index to the word length
        wordEnd = wordStart + currentWord.length;
    }
    // now set the range to the current word
    range.setStart(node, wordStart);
    range.setEnd(node, wordEnd);
    // now remove the current word
    range.deleteContents();
    // now replace the word with the link
    var el = document.createElement("a");
    el.href = "http://www.yahoo.com";
    el.text = selectedText;
    range.insertNode(el);
}

关于javascript - 在 contenteditable div 中用 html 替换某些最后输入的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37497494/

相关文章:

Python - 如何访问 range() 返回的范围类型对象的当前状态?

Python 项目 getter 'string index out of range'

javascript - render 似乎在 componentDidMount 之前触发(使用 async/await)

javascript - 我如何求和所有素数?

javascript - 没有可用的数据,两侧中心(垂直 + 水平)与 HTML,CSS

javascript - 如何将变量从隐藏字段发送到远程 PHP 文件并在 Bootstrap 模式中显示脚本的结果而不使用 jQuery 刷新?

python - 在python中创建一个跨特定范围集的for循环函数

javascript - 自定义下拉焦点: call stack size exceeded

javascript - 为什么可以从 JS-ScriptEngine eval(String) 执行 Java 代码?

javascript - 主干 View - 如何通过多个函数传递 'this'?