- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title></title>
- </head>
- <body>
- <script type="text/javascript">
-
- var n=(prompt("請輸入姓名:"));
- hello(n);
-
- function hello(name)
- {
- alert(name +"你好!!");
- }
- alert("這是個BMI計算機");
- var h=parseInt(prompt("請輸入身高:"));
- var w=parseInt(prompt("請輸入體重:"));
- var b=bmi(h/100,w);
- alert("你的BMI是:"+b);
- function bmi(height,weight)
- {
- return weight/(height*height);
- }
- </script>
- </body>
- </html>
複製代碼 |