-
-
Notifications
You must be signed in to change notification settings - Fork 892
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在光标位置插入内容的问题 #720
Comments
嗯,应该记录最近 n 次光标位置,方便追溯。 |
我也遇到这个问题了,目前临时把 range 存在一个变量里面。看来还是需要解决一下的。 |
你好,请问怎么获取与设置range? |
目前只能直接使用 JS API getSelection |
JS API getSelection 只能获取,但是不能设置光标呀,要怎么解决 |
|
Closed
This was referenced Mar 12, 2021
有需要的话可参考我写的以下代码:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
请先看《提问的智慧》,并尝试到黑客派搜寻资料解决问题。
编辑模式
wysiwyg
所见即所得模式ir
即时渲染模式sv
分屏编辑预览模式描述问题
https://vditor.b3log.org/demo/method-CRUD.html
这个页面中一开始鼠标点在
的用户较为友好,
此处文字的后面,然后点击一下编辑框的外部页面区域,
再次点击
在光标位置插入内容
按钮,插入的内容插入在编辑器的开头,而不是最后的光标位置这个需求的场景是,上面的toolbar 自定义了一个事件,点击后出现一个弹窗,然后弹窗中填了一些文字,点击确定,插入文字到编辑器中,结果插入到编辑器的开头位置了
期待的结果
希望点击编辑器外面的页面区域,仍然能记录最后点击编辑器的光标位置
The text was updated successfully, but these errors were encountered: