gpt4 book ai didi

javascript - 键入 jQuery 时用点替换逗号

转载 作者:行者123 更新时间:2023-11-28 04:17:25 29 4
gpt4 key购买 nike

您好,我想在使用 jQuery 的文本输入字段中键入时用点替换逗号。我现在有这段代码;

$(document).on('change', '.unitprice', function() {
$(this).val().replace(/,/g, '.');
});

The class of the input field is unitprice

但它不起作用..而且我似乎无法在谷歌上找到正确的答案。有人知道如何实现这一点吗?

最佳答案

您只是在更改变量而不是将其写回。

$(this).val($(this).val().replace(/,/g, '.'));

关于javascript - 键入 jQuery 时用点替换逗号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39196222/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com