Jquery:游标自动放在最后用val()

时间:2012-11-22 15:02:33

标签: jquery input cursor keyup

我使用javascript代码清除注册时的用户名。当不允许使用某个角色时,它会被短划线取代。

我的问题是:当用户想要在文本中间添加字符时,光标会自动放在输入的结尾

您可以在此处进行测试:http://jsfiddle.net/tZv5X/

HTML:

Username : <input type="text" id="username" />​

JS:

// Clean username
function clean_username(s) 
{
    var temp = s.replace(/[àâä@]/gi,"a");
    temp = temp.replace(/[éèêë]/gi,"e");
    temp = temp.replace(/[îï]/gi,"i");
    temp = temp.replace(/[ôö]/gi,"o");
    temp = temp.replace(/[ùûü]/gi,"u");
    temp = temp.replace(/[ç]/gi,"c");
    temp = temp.replace(/[. _,;?!&+'"()]/gi,"-");
    return temp;
}

var current_value;
$("#username").keyup(function(e)
{
    if($(this).val() != current_value)
    {
        $(this).val(clean_username($(this).val()));
        current_value = $(this).val();
    }
});​

有什么想法吗?

由于

2 个答案:

答案 0 :(得分:1)

没有很好的方法,但插件jQuery caret position应该从中消除一些痛苦。

答案 1 :(得分:1)

您可以使用jCaret插件(@puppybeard也提到)。看看:

$("#username").bind({
    keydown: function() {
        var $this = $(this);
        $this.data("pos", $this.caret().start);
    },
    keyup: function() {
        var $this = $(this),
            pos = $this.data("pos"),
            value = clean_username(this.value);
        if (value !== this.value) {
            this.value = value;
            $this.caret(pos + 1, pos + 1);
        }
    }
});​

DEMO: http://jsfiddle.net/tZv5X/3/