main.js
858 字节
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
$(function () {
'use strict';
var $distpicker = $('#distpicker');
$distpicker.distpicker({
province: '福建省',
city: '厦门市',
district: '思明区'
});
$('#reset').click(function () {
$distpicker.distpicker('reset');
});
$('#reset-deep').click(function () {
$distpicker.distpicker('reset', true);
});
$('#destroy').click(function () {
$distpicker.distpicker('destroy');
});
$('#distpicker1').distpicker();
$('#distpicker2').distpicker({
province: '---- 所在省 ----',
city: '---- 所在市 ----',
district: '---- 所在区 ----'
});
$('#distpicker3').distpicker({
province: '浙江省',
city: '杭州市',
district: '西湖区'
});
$('#distpicker4').distpicker({
placeholder: false
});
$('#distpicker5').distpicker({
autoSelect: false
});
});