在允许用户键入的同时更改输入值

时间:2011-08-27 20:33:14

标签: javascript jquery html input

使用JavaScript或jQuery在用户输入时是否可以更改文本输入字段的内容?

E.g。键入a + up会将a更改为å,同时将输入光标保持在同一位置。

2 个答案:

答案 0 :(得分:4)

是的,动态更改并将selectionStartselectionEnd保留在上一个位置:http://jsfiddle.net/pimvdb/p2jL3/3/

selectionStartselectionEnd表示选择范围,并且在没有选择时彼此相等,在这种情况下它们代表光标位置。

编辑:决定制作一个jQuery插件,因为它可能会在以后派上用场,并且很容易在任何地方实现。

(function($) {
    var down         = {}; // keys that are currently pressed down
        replacements = { // replacement maps
            37: { // left
                'a': 'ã'
            },

            38: { // up
                'a': 'â'
            },

            39: { // right
                'a': 'á'
            },

            40: { // down
                'a': 'à'
            }
        };

    $.fn.specialChars = function() {
        return this.keydown(function(e) {
            down[e.keyCode] = true; // this key is now down

            if(down[37] || down[38] || down[39] || down[40]) { // if an arrow key is down
                var value   = $(this).val(),                         // textbox value
                    pos     = $(this).prop('selectionStart'),        // cursor position
                    char    = value.charAt(pos - 1),                 // old character
                    replace = replacements[e.keyCode][char] || char; // new character if available

                $(this).val(value.substring(0, pos - 1) // set text to: text before character
                            + replace                   // + new character
                            + value.substring(pos))     // + text after cursor

                      .prop({selectionStart: pos,   // reset cursor position
                             selectionEnd:   pos});

                return false; // prevent going to start/end of textbox
            }
        }).keyup(function(e) {
            down[e.keyCode] = false; // this key is now not down anymore
        }).blur(function() {
            down = {}; // all keys are not down in the textbox when it loses focus
        });
    };
})(jQuery);

答案 1 :(得分:-1)

我曾经不得不做类似的事情。我认为这更简单。修改它以满足您的需求:

$("input#s").keyup(function(e) {
    var m=$("input#s");
    var value= m.val();
    var pos = m.prop('selectionStart');
    value=value.replace(">","»");
    m.val(value);
    m.prop({'selectionStart':pos,'selectionEnd':pos});
});