2007-05-28
健康换算 Body Mass
Enter your weight in kilograms and your height in centimeters in the form below and press the “Let’s see” button (Please read disclaimer below before using this form)
Disclaimer: This form is based on the calculation of
“Body Mass Index“
and is only meant to be a demonstration of how Javascript(tm) could be used
on a Web Page. Information it contains may not be accurate and is not designed
or intended to serve as medical advice. I am not liable for any physical or
psychological damages suffered as a result of using this script.
<!– hide this script tag’s contents from old browsers
//Body Mass calculator- by John Scott ( johnscott03 at yahoo.com)
//Visit JavaScript Kit http://javascriptkit.com) for script
//Credit must stay intact for use
function ClearForm(form){
form.weight.value = “”;
form.height.value = “”;
form.bmi.value = “”;
form.my_comment.value = “”;
}
function bmi(weight, height) {
bmindx=weight/eval(height*height);
return bmindx;
}
function checkform(form) {
if (form.weight.value==null||form.weight.value.length==0 || form.height.value==null||form.height.value.length==0){
alert(”\nPlease complete the form first”);
return false;
}
else if (parseFloat(form.height.value) =500||
parseFloat(form.weight.value) =500){
alert(”\nReally know what you’re doing? \nPlease enter values again. \nWeight in kilos and \nheight in cm”);
ClearForm(form);
return false;
}
return true;
}
function computeform(form) {
if (checkform(form)) {
yourbmi=Math.round(bmi(form.weight.value, form.height.value/100));
form.bmi.value=yourbmi;
if (yourbmi >40) {
form.my_comment.value=”You are grossly obese, consult your physician!”;
}
else if (yourbmi >30 && yourbmi 27 && yourbmi 22 && yourbmi =21 && yourbmi =18 && yourbmi =16 && yourbmi <18) {
form.my_comment.value=”You are starving. Go Find some food!”;
}
else if (yourbmi
Related posts:
- feet, inch, cm 换算 cm feet inch Note: 1 Inch = 2.54 cm,...
- GIGABYE GA-EP45C-DS3R or GA-EP45-DS3R Audio driver for Mac I tried almost all the drivers I could find on...
- 刘德华回顾 Andy Lau’s road (I) 华仔早期[##_iMazing|4013682033.jpg||8459041902.jpg||5296744430.jpg||5649910539.jpg||4862489166.jpg||7172952620.jpg||8300178769.jpg||6692039526.jpg||7519182922.jpg||6710944313.jpg||width=400 height=300 frame=net_imazing_frame_none transition=net_imazing_show_window_transition_alpha navigation=net_imazing_show_window_navigation_simple slideshowInterval=10 page=1 align=h skinPath=/script/gallery/iMazing/ |_##][##_iMazing|2247297273.jpg||1721088579.jpg||6709248964.jpg||5940404286.jpg||7689685341.jpg||7709120012.jpg||6875888244.jpg||9805212906.jpg||4451893538.jpg||4573928609.jpg||width=400...
- LineBuzz 一个非常酷的comment系统。你只要highlight一下,就可以马上就这段话进行评论了。这是一个非常实用又非常酷的工具。LineBuzz adds inline comments to your blog. Installing 1 line...
- 品牌与诱惑 - 性感的Nike [##_iMazing|8194719650.jpg||5085135812.jpg||2460782427.jpg||2957716921.jpg||6357310821.jpg||4072536689.jpg||width=400 height=300 frame=net_imazing_frame_none transition=net_imazing_show_window_transition_alpha navigation=net_imazing_show_window_navigation_simple slideshowInterval=10 page=1 align=h skinPath=/script/gallery/iMazing/ |_##]...
![[del.icio.us]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/digg.png)
![[Facebook]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/facebook.png)
![[Google]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/google.png)
![[MySpace]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/myspace.png)
![[Technorati]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/technorati.png)
![[Twitter]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/twitter.png)
![[Windows Live]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/windowslive.png)
![[Yahoo!]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/yahoo.png)
![[Email]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/email.png)









One Response to “健康换算 Body Mass”