How to get the pixel offset from the current caret position in an iframe with contentEditable

前端 未结 2 781
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-02 02:13

I would like to position a floating div element in an iframe with contentEditable, in case the user enters a certain key combination (

2条回答
  •  旧时难觅i
    2021-01-02 03:17

    The only reliable way of doing this is to insert a temporary element at the caret (ensuring that it is zero width), get its position and remove it again. You should also glue the two ends of the text node (if it was a text node that contained the caret) back together to ensure the DOM is as it was before inserting the node. Note, however, that doing this (or any other manual DOM manipulation on the editable content) breaks the browser's internal undo stack.

    The reason for this is that careful reading of the spec for the getBoundingClientRect() method of Range shows that getBoundingClientRect() is not obliged to return a Rect for a collapsed Range. Conceptually, not every position in the document has a well-defined bounding rectangle. The caret, however, does have physical location on the screen which in my opinion should be provided by the Selection API, but currently there is nothing in browsers to provide this.

提交回复
热议问题