<h1>判斷你的身高體重指數是否正常</h1> <form id='myform'> 你的身高: <input type='text' id='myh' value='170' size="5" /> 公分<br /> 你的體重: <input type='text' id='myw' value='65' size="5" /> 公斤<br /> <input type='button' value='按我看答案' onclick='check1()'><br /> 我的 BMI:<input type="text" id='ans0' size="5" readonly='readonly' /><br /> 體重過輕?<input type="text" id='ans1' size="5" readonly='readonly' /><br /> 體重正常?<input type="text" id='ans2' size="5" readonly='readonly' /><br /> 體重過重?<input type="text" id='ans3' size="5" readonly='readonly' /><br /> 我是胖子?<input type="text" id='ans4' size="5" readonly='readonly' /><br /> </form>