如何使用javascript获取文本光标位置

发布于 2024-10-04 19:18:59 字数 773 浏览 2 评论 0原文

这是我的代码,我填充 div 中的所有空间,(使用 jquery):

<div id="a" style="position:absolute;top:300px;width:100px;height:100px;background:red;color:black;word-wrap:break-word;">
    <div id='a2' contenteditable=true ></div>
</div>
<script type="text/javascript">
    String.prototype.repeat = function(n) {
        return new Array(1 + parseInt(n, 10)).join(this);
    }

    var s=$('#a').width()/4*$('#a').height()/19;
    $('#a2').html('&nbsp;'.repeat($('#a').width()/4*parseInt($('#a').height()/19)))

    $('#a2').click(function(){
        alert('sss')
    })

</script>

那么当我单击“a2”div 中的某处时如何获取文本光标位置

演示是 http://jsfiddle.net/KBnKc/

谢谢

this is my code ,i fill space all in div ,(use jquery):

<div id="a" style="position:absolute;top:300px;width:100px;height:100px;background:red;color:black;word-wrap:break-word;">
    <div id='a2' contenteditable=true ></div>
</div>
<script type="text/javascript">
    String.prototype.repeat = function(n) {
        return new Array(1 + parseInt(n, 10)).join(this);
    }

    var s=$('#a').width()/4*$('#a').height()/19;
    $('#a2').html(' '.repeat($('#a').width()/4*parseInt($('#a').height()/19)))

    $('#a2').click(function(){
        alert('sss')
    })

</script>

so how can i get the text cursor position when i click somewhere in 'a2' div

the demo is http://jsfiddle.net/KBnKc/

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

‘画卷フ 2024-10-11 19:18:59

您可以使用 pageXpageY jQuery 事件对象:

$('#a2').click(function(e) {
    alert(e.pageX + ", " + e.pageY);
});

返回的坐标是相对于文档左上角的。

您可能想要使用A-Tools 插件,更具体地说是它的 getSelection() 方法。如果未选择任何文本,它将返回插入符号位置。

顺便说一句,“文本光标”称为插入符号:)

编辑: 上述插件不适用于 contenteditable

元素。在寻找另一个解决方案时,我发现 这个问题 这是你的副本。也许那里的回复可以帮助你。

You can use the pageX and pageY property of the jQuery event object:

$('#a2').click(function(e) {
    alert(e.pageX + ", " + e.pageY);
});

The returned coordinates are relative to the top left of the document.

You might want to use the A-Tools plugin, more specifically its getSelection() method. It returns the caret position if no text is selected.

By the way, the "text cursor" is called the caret :)

EDIT: The aforementioned plugin will not work with contenteditable <div>elements. While looking for another solution, I found that question which is a duplicate of yours. Maybe the responses there can help you.

此刻的回忆 2024-10-11 19:18:59

您可以使用 Prototype.js 获取鼠标位置:

var x, y;
function getCoordinatesInsideElement(e)
{
    x = Event.pointerX(e);
    y = Event.pointerY(e);
    /* DO-SOMETHING */
}

请参阅原型参考:http://api .prototypejs.org/

you can use Prototype.js to get mouse position:

var x, y;
function getCoordinatesInsideElement(e)
{
    x = Event.pointerX(e);
    y = Event.pointerY(e);
    /* DO-SOMETHING */
}

See prototype reference at: http://api.prototypejs.org/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文