如何使用HTML标签在contenteditable div中获取光标位置

时间:2020-06-04 08:27:52

标签: javascript cursor

我有代码asp.net:

<div id="msg" contenteditable="true">
<span class="font-weight:700;">Hello world!</span>
</div>

我要REAL光标位置。不是div可见部分中的光标位置。一个例子:

如果内容是

Hello world!

第一个字符'o'之后的光标位置应为5。

但是如果内容是

<span class="font-weight:700;">Hello world!</span>

字符'o'之后的光标位置应为36。不能为5。该标记也应包括在内。

有人有想法吗?谢谢!

0 个答案:

没有答案