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