3

我使用 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();
    }
});​

任何想法 ?

谢谢

4

2 回答 2

1

没有很好的方法,但是插件,jQuery 插入符号位置应该可以减轻一些痛苦。

于 2012-11-22T15:10:38.910 回答
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);
        }
    }
});​

演示:http: //jsfiddle.net/tZv5X/3/

于 2012-11-22T15:22:08.880 回答