gpt4 book ai didi

jquery - 文本区域中的光标位置(字符索引,而不是 x/y 坐标)

转载 作者:行者123 更新时间:2023-12-03 21:25:53 25 4
gpt4 key购买 nike

如何使用 jQuery 获取文本区域中插入符号的位置?我正在寻找光标相对于文本开头的偏移量,而不是 the (x, y) position .

最佳答案

修改了 BojanG 的解决方案以使用 jQuery。在 Chrome、FF 和 IE 中进行了测试。

(function ($, undefined) {
$.fn.getCursorPosition = function() {
var el = $(this).get(0);
var pos = 0;
if('selectionStart' in el) {
pos = el.selectionStart;
} else if('selection' in document) {
el.focus();
var Sel = document.selection.createRange();
var SelLength = document.selection.createRange().text.length;
Sel.moveStart('character', -el.value.length);
pos = Sel.text.length - SelLength;
}
return pos;
}
})(jQuery);

基本上,要在文本框上使用它,请执行以下操作:

$("#myTextBoxSelector").getCursorPosition();

关于jquery - 文本区域中的光标位置(字符索引,而不是 x/y 坐标),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1891444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com