Java 脚本 onkeyDown 替换字符函数在 Internet Explorer 9 上无法正常工作

发布于 2024-11-24 03:14:53 字数 727 浏览 0 评论 0原文

我有一个用于十进制数字的 asp 文本框。 我有一个 jscript 函数来替换数字键盘“。”用户区域性中使用的小数分隔符的字符(例如:en-US -> 小数分隔符:“.” pt-PT -> 小数分隔符:',')

这是我的功能:

//method that substitutes num pad '.' with the current user culture decimal separator when num pad '.' key is hit

function onKeyDownPutDecimalSeparator(e, textBox) {

    var unicode = e.charCode ? e.charCode : e.keyCode;
    if (unicode == 110) {

        e.returnValue = false;
        e.cancel = true;

        textBox.value = textBox.value.concat(decimalSeparator);
    }

}

这在大多数浏览器上运行良好,包括chrome和IE8,但在IE9中而不是 替换,例如1.2-> 1,2, 正在做类似的事情:

1.2 -> 1,.2,当文本框失去焦点时,1,2

最终值“1,2”就是我想要的,但是当用户实际看到“1,.2”时,中间步骤就太糟糕

了那?

谢谢

I have an asp text box for decimal numbers.
I have a jscript function to replace the num pad "." character by the decimal separator used in the user culture(ex: en-US -> decimal separator: "." pt-PT -> decimal separator: ',')

here's my function:

//method that substitutes num pad '.' with the current user culture decimal separator when num pad '.' key is hit

function onKeyDownPutDecimalSeparator(e, textBox) {

    var unicode = e.charCode ? e.charCode : e.keyCode;
    if (unicode == 110) {

        e.returnValue = false;
        e.cancel = true;

        textBox.value = textBox.value.concat(decimalSeparator);
    }

}

this is working fine on most browsers, including chrome and IE8, but in IE9 instead of
replacing, for ex. 1.2 -> 1,2,
is doing something like:

1.2 -> 1,.2 and when the text box looses focus, 1,2

the final value "1,2" is what i want, but that middle step when the user can actually see "1,.2" it's just awfull

any tip on that?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风轻花落早 2024-12-01 03:14:53

而不是

textBox.value = textBox.value.concat(decimalSeparator);

尝试

textBox.value = textBox.value.replace('.', decimalSeparator);

Instead of

textBox.value = textBox.value.concat(decimalSeparator);

Try

textBox.value = textBox.value.replace('.', decimalSeparator);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文