#javascriptで点数計算のアプリをさくせいしてます。
足し算は文字列として扱われると思いますが、どういった記述をすれば数値として扱われるのでしょうか?
ご教授お願いいたします。
下記の記述を行いました。
#score.js window.addEventListener("load", function() { let score = document.getElementById("first-fa-score-field"); score.addEventListener("input", function() { let first_fa_score = score.value let fa_total = document.getElementById("fa-total"); fa_total.innerHTML = first_fa_score; let second_score = document.getElementById("second-fa-score-field"); second_score.addEventListener("input", function() { let second_fa_score = second_score.value let fa_total = document.getElementById("fa-total"); #以下の計算ができない total_score = (first_fa_score + second_fa_score) fa_total.innerHTML = total_score }) }) })
アドバイスをいただけると幸いです。
宜しくお願いいたします。
回答1件
あなたの回答
tips
プレビュー