0

定义:我有一个最大长度为 11 个字符的文本框。如果我尝试在该文本框的中间输入值,光标位置会自动移动到结束位置。你能帮我设置光标位置吗?

注意:函数用于文本框只允许字母数字值。

这里的代码

<!DOCTYPE html>
<html>
<body>
<script>
//function for alphanumberic validation
function alphaNumericOnly(i){
if(i.value != null) 
    {
        i.value = i.value.replace(/[^\w]+/g, ''); 

    }
    }
</script>
<input type="text" maxlength="11" id="policyOrBondNum" onkeyup="alphaNumericOnly(this);" />
</body>
</html>
4

1 回答 1

0

尝试-

<input type="text" maxlength="11" id="policyOrBondNum" onkeyup="alphaNumericOnly(this);" style="text-align: right; padding-right: 50px;"/>
于 2013-03-26T07:21:24.670 回答