我使用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();
}
});
知道吗?
谢谢
你可以
使用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/
没有很好的方法可以做到这一点,但是插件jQuery插入符号位置应该可以消除一些痛苦。