gpt4 book ai didi

Javascript 增加输入结果并包含逗号

转载 作者:行者123 更新时间:2023-11-30 05:39:42 26 4
gpt4 key购买 nike

我似乎无法正常工作,这让我发疯。我制作了一个 JSFiddle 并且热衷于让任何知识比我多的人来看看! http://jsfiddle.net/kLQf3/9/

基本上我想做的是让用户能够在第一个“收件人”字段中输入数字(包括逗号),即。 “60,000”,我希望这个数字显示在“发件人”字段中,它增加 1,即。 “60,001”。

输入框也一样。我对 JS 的了解有限,但我的自动更新工作正常,但增量不断给我 NaN 错误,因为包含逗号。

window.onload = function () {
var first = document.getElementById('firstFieldId'),
second = document.getElementById('secondFieldId'),
third = document.getElementById('thirdFieldId'),
fourth = document.getElementById('fourthFieldId');

first.onchange = function () {
second.value = first.value;
third.onchange = function () {
fourth.value = third.value;
};
};
};

最佳答案

只需使用 parseint 或 pasefloat:

window.onload = function () {
var first = document.getElementById('firstFieldId'),
second = document.getElementById('secondFieldId'),
third = document.getElementById('thirdFieldId'),
fourth = document.getElementById('fourthFieldId');

first.onchange = function () {
second.value = parseFloat(first.value)+1;
alert(second.value);
third.onchange = function () {
fourth.value = parseFloat(third.value)+1;
};
};
};

关于Javascript 增加输入结果并包含逗号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21545834/

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