-
Notifications
You must be signed in to change notification settings - Fork 0
/
demoweb.html
57 lines (53 loc) · 2.66 KB
/
demoweb.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<meta charset="utf-8">
<title>RER</title>
<script>
function myFunction() {
var x = document.getElementById("weight").value;
var typ = document.getElementById("cattype").value;
var ty;
switch(typ*10){
case (10):
ty="แมวโตเต็มวัยที่น้ำหนักเพิ่มง่าย"; break;
case (12):
ty="แมวโตเต็มวัยที่ทำหมัน"; break;
case (14):
ty="แมวโตเต็มวัยทั่วไป"; break;
default:
ty="แมวโตเต็มวัยที่ต้องการให้น้ำหนักลด"; break;
}
document.getElementById("info").innerHTML = "แมวของคุณมีน้ำหนัก " + x + " kg\n ประเภท" + ty;
if(x < 2.6){
x=53.7*x
} else if (x > 6.6){
x=131.8 *x
} else {
x=46.8*x
}
x=(x*typ)
x= parseFloat(x).toFixed(2);
document.getElementById("demo").innerHTML = "ค่า RER คือ " + x + " kcal/kg";
}
</script>
</head>
<body>
<h3>ระบบคำนวนค่า RER สำหรับแมว</h3>
<p><strong>Note:</strong> กรุณากรอกน้ำหนักและประเภทแมวให้ถูกต้อง</p>
<p>น้ำหนัก(kg.):</p><input type="number" id="weight" value="0">
<form>
<label for="cars">ประเภทของแมว :</label>
<select id="cattype" name="type">
<option value=1.2>แมวโตเต็มวัยที่ทำหมัน</option>
<option value=1.4>แมวโตเต็มวัยทั่วไป</option>
<option value=1.0>แมวโตเต็มวัยที่น้ำหนักเพิ่มง่าย</option>
<option value=0.8>แมวโตเต็มวัยที่ต้องการให้น้ำหนักลด</option>
</select>
</form>
<p>กดปุ่มเพื่อคำนวนผล</p>
<button onclick="myFunction()">Try it</button>
<p id="info"></p>
<p id="demo"></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/5qap5aO4i9A" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>