示例
这是可编辑 div中的一些文字。这可以跨越多行,段落和 等等等等。我想要做的是找到插入符号的相对位置就在这里。意思是,相对于div或文档,插入符号位于{top:'5px',left:'250px'}。
这个想法是为了提供选项下拉。这可能是直接的,还是我必须根据div line-height, padding,.. + caret position
等编制一个解决方案?
答案 0 :(得分:5)
从rangy查看此演示。也许正是你在寻找的东西:
https://github.com/timdown/rangy/blob/master/demos/position.html
如果查看代码,您将能够看到:
var startPos = rangy.getSelection().getStartDocumentPos(); // get x, y of selection/cursor
然后您可以使用startPos.x
和startPos.y
答案 1 :(得分:1)
我已经挖掘了Rangy的代码(这太棒了!但是将其全部包含在我的用例中是一种过度杀伤),并且只要有人不需要完全跨浏览器兼容性,她就可以使用本机代码-liner:
var pos = window.getSelection().getRangeAt(0).getClientRects()[0]
然后您将在top
上提供bottom
,right
,left
和pos
(好吧,我说谎了 - 不是真正的单线,它必须被包裹以检查是否有一些范围。
我只需要它与Firefox一起工作,这对我来说已经足够了。
要点:
演示(不适用于JSFiddle,因此我将其全部转储):
<!DOCTYPE html>
<head>
<script type="text/javascript">
var getSelectionTopLeft = function (){
var selection = window.getSelection();
var rangePos, x, y;
if(selection.rangeCount) {
rangePos = window.getSelection().getRangeAt(0).getClientRects()[0];
// you can get also right and bottom here if you like
x = parseInt(rangePos.left);
y = parseInt(rangePos.top);
console && console.log("found selection at: x=" + x + ", y=" + y);
}else{
x = 0;
y = 0;
console && console.log("no selections found");
}
return {x: x, y: y};
}
var move = function (offsetX, offsetY){
var coords = getSelectionTopLeft();
var square = document.getElementById('square');
square.style.left = (coords.x + offsetX) + 'px';
square.style.top = (coords.y + offsetY) + 'px';
}
</script>
<style type="text/css">
#square {position:absolute; top:0; left:0; width:10px; height:10px; background-color:red;}
</style>
</head>
<body>
<h1>Caret position test</h1>
<div id="square"></div>
<button onclick="move(5, 5)">move the square 5px/5px below the caret</button>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Curabitur tempor pharetra iaculis. Ut tempor mauris et ligula
aliquam sed venenatis dui pharetra. Duis dictum rutrum venenatis.
Cras ut lorem justo.</p>
<p>Nam vehicula elit tincidunt nibh elementum venenatis. Duis a facilisis sem.
Morbi luctus porttitor feugiat. Nunc feugiat augue eu tortor interdum fermentum
a tincidunt felis.</p>
</body>
</html>