jQuery .numeric 和粘贴内容

发布于 2024-12-05 17:01:41 字数 581 浏览 0 评论 0原文

.nu​​meric 函数(http://www.texotela.co.uk/code/jquery/numeric/)效果很好,但是当您将内容粘贴到 txtOrderName 字段并退出该字段时,它不会验证。

有谁知道任何修改可以允许 .numeric 函数在粘贴内容后再次运行?

例如,如果我将“4,00”粘贴到 txtOrderPrice 字段中,我不希望显示逗号 (,)。如果您在字段中键入“4,00”(更改为“400”),数字函数将忽略此设置。但了解人们后,他们可能只是将“4,00”粘贴到字段中并将内容填满。

<script type="text/javascript" src="jquery.numeric.js"></script>
  $(document).ready(function() {    
    $(".numeric").numeric();
  });
</script>

<input class="numeric" type="text" id="txtOrderPrice" name="txtOrderPrice_name" maxlength="128" />

The .numeric function (http://www.texotela.co.uk/code/jquery/numeric/) works great, but when you paste content into the txtOrderName field and you exit the field it doesnt validate.

Does anyone know any modifications that will allow the .numeric function to be run again after content has been pasted?

For example, if I paste '4,00' into the txtOrderPrice field, I dont want the comma (,) to be displayed. The numeric function ignores this if you type '4,00' in the field (changes to '400'). But knowing people they might just paste '4,00' into the field and stuff things up.

<script type="text/javascript" src="jquery.numeric.js"></script>
  $(document).ready(function() {    
    $(".numeric").numeric();
  });
</script>

<input class="numeric" type="text" id="txtOrderPrice" name="txtOrderPrice_name" maxlength="128" />

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

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

发布评论

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

评论(2

打小就很酷 2024-12-12 17:01:41

它说这是限制:

限制/错误 CTRL+A 不会选择所有文本。文本粘贴方式
鼠标不会自动更正,但可以定义回调
解决这个问题。

因此,解决方法是将其连接到 .blur() 或 .focusout() 事件:

$(document).ready(function() {
    $(".numeric").numeric();
    $(".numeric").focusout(function() {
        $(this).keyup();
    });
})

http://jsfiddle .net/xFJfP/

it says it's the limitation:

Limitations / Bugs CTRL+A does not select all text. Text pasted via
the mouse is not auto-corrected, though a callback can be defined to
work around this.

so, the workaround would be to hook it up to either .blur() or .focusout() event:

$(document).ready(function() {
    $(".numeric").numeric();
    $(".numeric").focusout(function() {
        $(this).keyup();
    });
})

http://jsfiddle.net/xFJfP/

小兔几 2024-12-12 17:01:41

您可以将 , 替换为 .,如下所示:

value.replace(/,/g,".");

You could replace the , with a . like so:

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