最佳答案
我需要 javascript 将5添加到一个整数变量,但是它将变量视为字符串,因此它写出变量,然后将5添加到“ string”的末尾。我怎么能强迫它做数学题呢?
var dots = document.getElementById("txt").value; // 5
function increase(){
dots = dots + 5;
}
输出: 55
如何强制它输出 10
?