-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page1.html
179 lines (178 loc) · 5.7 KB
/
Page1.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<script src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
<!--<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>-->
<title>learning</title>
</head>
<body>
<h2>家教薪資小幫手</h2>
<div>
<p>以下請輸入相關資料可以算處預測的薪資</p><br>
<span>place</span><select id="place">
<option>
新 北 市
</option>
<option>
臺 北 市
</option>
<option>
桃 園 市
</option>
<option>
臺 中 市
</option>
<option>
臺 南 市
</option>
<option>
高 雄 市
</option>
<option>
宜 蘭 縣
</option>
<option>
新 竹 縣
</option>
<option>
苗 栗 縣
</option>
<option>
彰 化 縣
</option>
<option>
南 投 縣
</option>
<option>
雲 林 縣
</option>
<option>
嘉 義 縣
</option>
<option>
屏 東 縣
</option>
<option>
臺 東 縣
</option>
<option>
花 蓮 縣
</option>
<option>
澎 湖 縣
</option>
<option>
基 隆 市
</option>
<option>
新 竹 市
</option>
<option>嘉 義 市</option>
</select>
<span>student_grade</span><select id="student_grade">
<option>
學齡前
</option>
<option>
幼稚園
</option>
<option>
小學一年級
</option>
<option>
小學二年級
</option>
<option>
小學三年級
</option>
<option>
小學四年級
</option>
<option>
小學五年級
</option>
<option>
小學六年級
</option>
<option>
國中一年級
</option>
<option>
國中二年級
</option>
<option>
國中三年級
</option>
<option>
高中一年級
</option>
<option>
高年二年級
</option>
<option>
高中三年級
</option>
<option>
大學
</option>
<option>社會人士</option>
</select>
<span>teacher_grade</span><select id="teacher_grade">
<option>
無
</option>
<option>
3個月
</option>
<option>
半年
</option>
<option>
一年
</option>
<option>
一年半
</option>
<option>
二年
</option>
<option>
三年
</option>
<option>
四年
</option>
<option>
五年
</option>
<option>
六年
</option>
<option>七年以上</option>
</select>
<input id="mode1_confirm" type="button" value="confirm" />
</div><br />
<div>
<input id="result" type="text" value="result" />
</div>
<script>
var dictionary = {
'學齡前': 1, '幼稚園': 1, '小學一年級': 1, '小學二年級': 2, '小學三年級': 3, '小學四年級': 4, '小學五年級': 5, '小學六年級': 6,
'國中一年級': 7, '國中二年級': 8, '國中三年級': 9, '高中一年級': 10, '高年二年級': 11, '高中三年級': 12, '大學': 12, '社會人士': 12,
'無': 0, '3個月': 0.25, '半年': 0.5, '一年': 1, '一年半': 1.5, '二年': 2, '三年': 3, '四年': 4, '五年': 5, '六年': 6, '七年以上': 7,
'新 北 市': 0.78, '臺 北 市': 1, '桃 園 市': 0.84, '臺 中 市': 0.78, '臺 南 市': 0.66, '高 雄 市': 0.74, '宜 蘭 縣': 0.65,
'新 竹 縣': 0.92, '苗 栗 縣': 0.63, '彰 化 縣': 0.6, '南 投 縣': 0.59, '雲 林 縣': 0.52, '嘉 義 縣': 0.57, '屏 東 縣': 0.6,
'臺 東 縣': 0.54, '花 蓮 縣': 0.57, '澎 湖 縣': 0.58, '基 隆 市': 0.65, '新 竹 市': 0.86, '嘉 義 市': 0.7,
};
function mode1_caculation(place, student, teacher) {
$("#result").val(dictionary[place] * 403 + dictionary[student] * 25 + dictionary[teacher] * 47 - 49);
}
$(document).ready(function () {
$("#mode1_confirm").click(function () {
mode1_caculation($("#place").val(), $("#student_grade").val(), $("#teacher_grade").val());
})
});
</script>
</body>
</html>