获取文本区域中插入符号的 XY 坐标
是否有任何好的 JQuery/JS 解决方案来获取文本区域中插入符号的绝对位置(以 X/Y 坐标或顶部/左侧坐标给出)。
keyDown JQuery 函数的本机事件对象给出了光标的 x/y 坐标,我想要与工作插入符上的工作类似的东西。
我的目标是添加一个浮动 HTML 元素,该元素将相对于工作插入符位置定位,因此我需要以某种方式获取其位置。
我需要解决方案来处理 TextArea 元素,但任何可编辑 html 元素的通用解决方案会更好!
Is there any good JQuery/JS solution to get the absolute position of a caret in text area (given in X/Y coordinates OR top/left coordinates).
The native Event object of keyDown JQuery function gives the x/y coordinates of the cursor and I want something similar the works on the working caret.
My goal is to add a floating HTML element the will be positioned relatively to the working caret position so I need to somehow get its position.
I need the solution to work on TextArea elements but a general solution to any editable html element would be even better!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能你想用
替换
may be you want replace
<textarea>
with<div contenteditable="true">
, it has almost the same behavior, and you can get coordinates by conventional way.