我需要将结果加载到"值"该字段而不是ID如下,我该怎么做?我正在做的事情不是保存在数据库中。
<script type="text/javascript">
let total = 0;
document.querySelectorAll('input[type="number"]').forEach(el=>total+=+el.value);
document.querySelector('#total').value = total;
console.log(total);
</script>