我有一个keyup事件
editor.on('keyup', function(e) {
selection = rangy.getSelection()
start = selection.anchorOffset;
end = selection.focusOffset;
// start and end will give the position consider (2, 4)
// Where 2 is start position
// and 4 is end position
});
我想替换位置2和4之间的文本。如何通过Rangy实现这一目标。
编辑是contenteeditble容器。
考虑以下示例
这是测试文字
现在,插入位置位于Th
之后
所以我想替换at
而不是is
。我手头有职位(3,4)