BMI计算器想要一个parseInt()函数

时间:2013-09-18 14:35:00

标签: javascript

我刚刚得到了下面的代码,我发现我需要做parseInt()函数。这意味着我需要使用这个函数来找到我的BMI答案的整数答案。

<!DOCTYPE html>
<html>
<head>
    <title> 
        Calculate your BMI
    </title>


<script type=text/javascript>
function CalculateBmi(){
var weight= document.getElementsByName('weight')[0].value;
var height= document.getElementsByName('height')[0].value;

if(weight>0 && height>0){
var finalBMI=(weight/(height*height))*703;
document.getElementsByName('BMI')[0].value=finalBMI;
}
}
</script>
</head>


<body>
    <form name="Form">
    weight in pounds
    <input type="text"  name="weight" />
        <br/>
    height in inches
    <input type="text" name="height"/>
        <br/>
    <input type="button" value="calculate BMI" onclick="CalculateBmi()">
        <br />
    BMI result
    <input type="text" name="BMI"/>
    </form>

</body>
</html>

上面的代码就是我所做的,我试着把()放在co中,如

document.getElementsByName( 'BMI')[0]。价值= parseInt函数(finalBMI);

但我相信我会错过一些东西。

1 个答案:

答案 0 :(得分:3)

var weight= parseInt(document.getElementsByName('weight')[0].value, 10);
var height= parseInt(document.getElementsByName('height')[0].value, 10);

下次,请向我们展示您在问题中的尝试次数