我在输入文本区域时创建了一个下拉列表。给定键盘输入事件,如何获得键入字母的位置?

最佳答案

var oldValue = '';
var keyup = function() {
    var value = document.getElementById('myTextArea').value;
    for(var i=0; i<value.length; i++) {
        if(i >= oldValue.length) {
            // letter typed at end
            oldValue = value;
            return; // not really necessary since we should be at the end of the loop anyway
        } else if(value.charAt(i) !== oldValue.charAt(i)) {
            // letter typed at i
            oldValue = value;
            return; // no need to keep searching
        }
    }
    // no new letters typed
}

关于javascript - 如何使用Javascript在文本区域中获取键入字母的位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30448190/

10-12 16:20