gpt4 book ai didi

javascript - TinyMCE - 在底部插入内容

转载 作者:数据小太阳 更新时间:2023-10-29 06:03:22 25 4
gpt4 key购买 nike

我知道我们可以通过这种方式将代码插入到顶部。

ed.selection.setCursorLocation(ed.getBody().firstChild, 0);

但是,我不确定如何为底部的内容实现这一点。

最佳答案

另一种方法:

function getTextNodes(node, nodeType, result){

var children = node.childNodes;
var nodeType = nodeType ? nodeType : 3;

var result = !result ? [] : result;
if (node.nodeType == nodeType) {
result.push(node);
}

for (var i=0; i<children.length; i++) {
result = this.getTextNodes(children[i], nodeType, result)
}

return result;
};

// get all Textnodes from lastchild, calc length
var textnodes = getTextNodes(ed.getBody().lastChild);

// set Cursor to last position
ed.selection.setCursorLocation(textnodes[textnodes.length-1], textnodes[textnodes.length-1].textContent.length );

关于javascript - TinyMCE - 在底部插入内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7962474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com