我想要這個函數添加從窗體輸入的兩個值,而不是添加合併值的值。如果我輸入2和2它來到22,而我想輸出4。我認爲for循環不是wodkingFor Loop不能正常工作
<script>
var calculate = function(){
var input = document.getElementsByTagName("input");
var length = input.length;
for (var i = 0; i < length; i++) {
input[i] = input[i].value;
input[i] = parseInt(input[i]);
}
var total_living_room = input[0] + input[1];
document.getElementById("sh").innerHTML=total_living_room;
}
</script>
'輸入[0]'和'輸入[1]'仍然是一個元素,並且必須通過'parseInt函數添加值(輸入[0]。價值)+ parseInt函數(輸入[1] .value)' – Pandian