An open API service indexing awesome lists of open source software.

https://github.com/overtrue/city.js

城市选择控件
https://github.com/overtrue/city.js

Last synced: 10 months ago
JSON representation

城市选择控件

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);
```