https://github.com/overtrue/city.js
城市选择控件
https://github.com/overtrue/city.js
Last synced: 10 months ago
JSON representation
城市选择控件
- Host: GitHub
- URL: https://github.com/overtrue/city.js
- Owner: overtrue
- License: mit
- Created: 2014-12-09T09:14:36.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-06-17T08:09:38.000Z (over 9 years ago)
- Last Synced: 2025-02-08T22:22:18.891Z (11 months ago)
- Size: 119 KB
- Stars: 92
- Watchers: 9
- Forks: 35
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
city.js
=======
城市选择控件
#Usage
html:
```html
省:
市:
区:
```
js:
```js
$(function(){
city_selector();
});
```
#Settings
```js
var config = {
province: '#province',
city: "#city",
area: "#area",
};
city_selector(config);
```