我正在尝试制作一个计算器来计算在一定时间内燃烧的卡路里量,但每当我运行它时,我得到0作为输出。我已经尝试将calorieCountOut变量设置为任意数字,然后它工作正常,但每次我使用此代码运行它,我得到0.这是我的代码:
const AGECONST = 0.2017;
const WEIGHTCONST = 0.09036;
const HRCONST = 0.6309;
const SUBTRACTCONST = 55.0969;
const TIMECONST = 4.184;
//var gender = document.getElementById("gender").innerHTML;
var gender = "male";
var weight = document.getElementById("weight");
var age = document.getElementById("age");
var time = document.getElementById("time");
var hr = 140;//dummy number
function calculate(){
if (gender = "male"){
var calorieCount = ((age * AGECONST) - (weight * WEIGHTCONST) + (hr * HRCONST) - SUBTRACTCONST) * time / TIMECONST;
}
//else if (gender = "female"){
//}
var calorieCountOut = calorieCount.toString();
document.getElementById("output").innerHTML = calorieCountOut;
}
答案 0 :(得分:-1)
尝试getElementById('myId').value
代替控件内部的值作为对象。
现在您将html对象分配给变量,但您想要的(我假设)是存储在该html对象中的数字。