如何在"值输入中显示结果"而不是" ID输入"?

时间:2018-03-20 04:23:47

标签: javascript jquery html

我需要将结果加载到"值"该字段而不是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>

0 个答案:

没有答案