是否可以以编程方式检测<input type =“text”/>元素中的插入符位置?

时间:2010-11-15 15:22:00

标签: javascript

假设一个包含数据的常规<input type=text>文本框。

是否可以检测(通过JavaScript)文本框内文本方块的位置?

我能够检测到ARROW LEFT或ARROW RIGHT keydown事件 - 但是如何检测光标位置?

为什么我需要这个:

我在这里有一个动态文本框:http://vidasp.net/tinydemos/dynamic-textbox.html
它工作得很好,但我想解决两种情况:

  1. 当光标位于文本框的开头且用户按下BACKSPACE
  2. 当光标位于文本框的末尾并且用户按下DELETE
  3. (在这两种情况下,文本框必须包含可观察效果的数据。)

2 个答案:

答案 0 :(得分:3)

我在这方面做了很多工作。以下适用于所有主要浏览器(包括IE 6)的文本<input><textarea>,并且适用于所有情况,包括有前导和尾随空格(这是许多解决方案,包括a-tools,倒下)。在这个问题中,这段代码有一些背景知识:IE's document.selection.createRange doesn't include leading or trailing blank lines

您还可以将以下内容作为我编写的jQuery输入/ textarea选择插件的一部分,该插件尚未记录:http://code.google.com/p/rangyinputs/

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
    };
}

var el = document.getElementById("your_input");
var sel = getInputSelection(el);
alert(sel.start + ", " + sel.end);

答案 1 :(得分:1)

是的,这是可能的。

如果你使用

,它会更简单

http://plugins.jquery.com/project/a-tools

祝你好运:)

编辑:请注意光标是经常被称为“插入符号”的msot,只是FYI;)