»
Tiếng AnhTiếng PhápTiếng Việt

In - Lượng calo tiêu thụ - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tính toán » Lượng calo tiêu thụ
URL: https://www.javascriptbank.com/calorie-calculator.html

Lượng calo tiêu thụ © JavaScriptBank.comHiệu ứng sẽ dựa vào trọng lượng và khối lượng vận động do người dùng nhập vào để tính lượng calo tiêu thụ và đưa ra những lời đề nghị có ích.

Phiên bản đầy đủ: jsB@nk » Tính toán » Lượng calo tiêu thụ
URL: https://www.javascriptbank.com/calorie-calculator.html



JavaScript
<SCRIPT LANGUAGE="JavaScript"><!-- Beginvar myWeight;var myDistance;function HowMany(form) {var difference;difference = (myDistance * myWeight) * .653;form.Fdiff.value = difference; if (difference < 100) {form.comment.value="You better start working!";}if (difference > 101 && difference < 200) {form.comment.value="Nice run, but you can do better.";}if (difference > 201 && difference < 300) {form.comment.value="Very good! Push above 300 next time.";}if (difference > 301 && difference < 500) {form.comment.value="Great! Your a runner.....keep it up!";}if (difference > 501 && difference < 700) {form.comment.value="Bill Rogers move over!";}if (difference > 701) {form.comment.value="Your my hero! Have a jelly doughnut."; }}function SetMyWeight(weight) {myWeight = weight.value;}function SetmyDistance(dis) {myDistance = dis.value;}function ClearForm(form){form.myWeight.value = "";form.myDistance.value = "";form.Fdiff.value = "";form.comment.value = "";}// End --></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<FORM METHOD="POST"><TABLE border=3><TR><TR><TD><divalign=center>Your<br>Weight</div></TD><TD><divalign=center>Miles<br>run</div></TD><TD><divalign=center>Calories<br>burned</div></TD><TD><INPUT TYPE=BUTTON ONCLICK="HowMany(this.form)"VALUE="Calculate"></TD></TR><tr><TD><div align=center><INPUT TYPE=text NAME=myWeightSIZE="4"ONCHANGE="SetMyWeight(this)"></div></TD><TD><div align=center><INPUT TYPE=text NAME=myDistanceSIZE="4"ONCHANGE="SetmyDistance(this)"></div></TD><TD><div align=center><INPUT TYPE=text NAME="Fdiff"VALUE="" SIZE="6"></div></TD><TD><div align=center><INPUT TYPE=BUTTON VALUE=" Reset "onClick="ClearForm(this.form)"></div></tr></table><table border=3><tr><TD><DIV ALIGN=CENTER>Comments</DIV></TD><TD><INPUT TYPE=text NAME="comment" size="37"></td></TR></TABLE></FORM><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->