php 我不知道为什么会有这样的结果,

rekjcdws  于 2022-11-28  发布在  PHP
关注(0)|答案(1)|浏览(352)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我试图使总的复选框上勾选这里是我的脚本
第一个

rhfm7lfc

rhfm7lfc1#

我对您提供代码做了一些小修改,如下所示:

<!DOCTYPE html>
<html>
<body>
<script>
function UpdateCost(elem)
{  
    alert(elem.value);
    let total = Number(elem.value);
    if(isNaN(total)){
        total = 0;
    }
    if(elem.checked === true){ 
        total += Number(elem.value); 
    } else {
        total -= Number(elem.value);
    }

    alert(total);
    document.getElementById('total').value = total.toFixed(0);
}
</script>

<form >
<input type="checkbox" value="4" onclick="UpdateCost(this);" />
</form>

</body>
</html>

相关问题