-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
31 lines (29 loc) · 889 Bytes
/
index.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>城市选择插件demo</title>
<link rel="stylesheet" type="text/css" href="css/cityPicker.css">
</head>
<body>
<input type="text" id="cityChoice" style="margin: 134px 0 0 357px;">
<input type="hidden" id="province" value="">
<input type="hidden" id="city" value="">
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="js/cityData.js"></script>
<script type="text/javascript" src="js/cityPicker.js"></script>
<script>
var cityPicker = new IIInsomniaCityPicker({
data: cityData,
target: '#cityChoice',
valType: 'k-v',
hideCityInput: '#city',
hideProvinceInput: '#province',
callback: function(city_id){
alert(city_id);
}
});
cityPicker.init();
</script>
</body>
</html>