如何从一开始就以字符为单位获取文本区域中的插入记号列(不是像素)位置?

2022-08-30 01:58:05

如何在使用JavaScript中获得插入符号位置?<textarea>

例如:This is| a text

这应该返回 。7

您如何让它返回光标/选择周围的字符串?

例如: .'This is', '', ' a text'

如果单词“is”突出显示,则它将返回 。'This ', 'is', ' a text'


答案 1

使用Firefox,Safari(以及其他基于Gecko的浏览器),您可以轻松地使用textarea.selectionStart,但对于IE来说,这不起作用,因此您必须执行以下操作:

function getCaret(node) {
  if (node.selectionStart) {
    return node.selectionStart;
  } else if (!document.selection) {
    return 0;
  }

  var c = "\001",
      sel = document.selection.createRange(),
      dul = sel.duplicate(),
      len = 0;

  dul.moveToElementText(node);
  sel.text = c;
  len = dul.text.indexOf(c);
  sel.moveStart('character',-1);
  sel.text = "";
  return len;
}

(此处提供完整代码)

我还建议您检查jQuery FieldSelection插件,它允许您这样做以及更多...

编辑:我实际上重新实现了上面的代码:

function getCaret(el) { 
  if (el.selectionStart) { 
    return el.selectionStart; 
  } else if (document.selection) { 
    el.focus(); 

    var r = document.selection.createRange(); 
    if (r == null) { 
      return 0; 
    } 

    var re = el.createTextRange(), 
        rc = re.duplicate(); 
    re.moveToBookmark(r.getBookmark()); 
    rc.setEndPoint('EndToStart', re); 

    return rc.text.length; 
  }  
  return 0; 
}

在此处查看示例。


答案 2

更新于2010年9月5日

鉴于每个人似乎都被引导到这个问题,我正在添加我对类似问题的答案,其中包含与此答案相同的代码,但对于那些感兴趣的人,它具有完整的背景:

IE 的 document.selection.createRange 不包含前导或尾随空白行

在IE中考虑尾随换行符是很棘手的,我还没有看到任何正确执行此操作的解决方案,包括这个问题的任何其他答案。但是,可以使用以下函数,该函数将返回 or 文本中所选内容的开始和结束(在插入符号的情况下是相同的)。<textarea><input>

请注意,文本区域必须具有焦点,此功能才能在 IE 中正常工作。如果有疑问,请先调用文本区域的方法。focus()

function getInputSelection(el) {
    var start = 0, end = 0, normalizedValue, range,
        textInputRange, len, endRange;

    if (typeof el.selectionStart == "number" && typeof el.selectionEnd == "number") {
        start = el.selectionStart;
        end = el.selectionEnd;
    } else {
        range = document.selection.createRange();

        if (range && range.parentElement() == el) {
            len = el.value.length;
            normalizedValue = el.value.replace(/\r\n/g, "\n");

            // Create a working TextRange that lives only in the input
            textInputRange = el.createTextRange();
            textInputRange.moveToBookmark(range.getBookmark());

            // Check if the start and end of the selection are at the very end
            // of the input, since moveStart/moveEnd doesn't return what we want
            // in those cases
            endRange = el.createTextRange();
            endRange.collapse(false);

            if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) {
                start = end = len;
            } else {
                start = -textInputRange.moveStart("character", -len);
                start += normalizedValue.slice(0, start).split("\n").length - 1;

                if (textInputRange.compareEndPoints("EndToEnd", endRange) > -1) {
                    end = len;
                } else {
                    end = -textInputRange.moveEnd("character", -len);
                    end += normalizedValue.slice(0, end).split("\n").length - 1;
                }
            }
        }
    }

    return {
        start: start,
        end: end
    };
}