gpt4 book ai didi

javascript - 简单的乘法计算器不保留小数值

转载 作者:行者123 更新时间:2023-12-03 01:16:22 24 4
gpt4 key购买 nike

这是一个简单的乘法计算器,输入时会自动将逗号添加到单独的千组中。但是它不接受十进制值,例如 1,778.23。直接复制粘贴到字段中可以,但无法输入。任何解决方案将不胜感激。

function calculate() {
var myBox1 = updateValue('box1');
var myBox2 = updateValue('box2');
var myResult = myBox1 * myBox2;
adTextRes('result', myResult)
}

function updateValue(nameOf) {
var inputNo = document.getElementById(nameOf).value;
var no = createNo(inputNo);
adTextRes(nameOf, no);
return no;
}

function adTextRes(nameOf, no) {
var asText = String(no).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
document.getElementById(nameOf).value = asText;
}

function createNo(textin) {
return Number(textin.replace(/,/g, ""));
}
<table width="80%" border="0">
<tr>
<th>Box 1</th>
<th>Box 2</th>
<th>Result</th>
</tr>
<tr>
<td><input id="box1" type="text" oninput="calculate()" /></td>
<td><input id="box2" type="text" oninput="calculate()" /></td>
<td><input id="result" /></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>

最佳答案

问题是,在createNo中:

return Number(textin.replace(/,/g, ""));

当转换为数字时,尾随句点将被丢弃。不过,一开始就没有必要进行这样的转换 - 只需将其保留,它就会按预期工作:

function createNo(textin) {
return textin.replace(/,/g, "");
}

要防止输入多个小数点,您可以在同一函数中使用另一个replace:

.replace(/(\.\d*)\./, '$1')

function calculate() {
var myBox1 = updateValue('box1');
var myBox2 = updateValue('box2');
var myResult = myBox1 * myBox2;
adTextRes('result', myResult)
}

function updateValue(nameOf) {
var inputNo = document.getElementById(nameOf).value;
var no = createNo(inputNo);
adTextRes(nameOf, no);
return no;
}

function adTextRes(nameOf, no) {
var asText = String(no).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
document.getElementById(nameOf).value = asText;
}

function createNo(textin) {
return textin
.replace(/,/g, "")
.replace(/(\.\d*)\./, '$1')
}
<table width="80%" border="0">
<tr>
<th>Box 1</th>
<th>Box 2</th>
<th>Result</th>
</tr>
<tr>
<td><input id="box1" type="text" oninput="calculate()" /></td>
<td><input id="box2" type="text" oninput="calculate()" /></td>
<td><input id="result" /></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>

关于javascript - 简单的乘法计算器不保留小数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51999122/

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