开源软件名称(OpenSource Name):tianxiangbing/mobile-select-area
开源软件地址(OpenSource Url):https://github.com/tianxiangbing/mobile-select-area
开源编程语言(OpenSource Language):
JavaScript
97.4%
开源软件介绍(OpenSource Introduction):mobile-select-area
手机联动选择地区
效果图如下:
例子见[DEMO]
(http://tianxiangbing.github.io/mobile-select-area/)
或
(http://www.lovewebgames.com/jsmodule/mobile-select-area.html)
npm install mobile-select-area --save-dev
用法
或者
<!DOCTYPE>
<html>
<head>
<title>选择日期</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" href="../dist/mobile-select-area.css">
<link rel="stylesheet" type="text/css" href="../dist/dialog.min.css">
<script type="text/javascript" src="../dist/zepto.js"></script>
<script type="text/javascript" src="../dist/dialog.js"></script>
<script type="text/javascript" src="../dist/mobile-select-area.js"></script>
</head>
<body>
<input type="text" id="txt_area" value="浙江省 杭州市 滨江区"/>
<input type="hidden" id="hd_area" value="1,1,1"/>
<script>
var selectArea = new MobileSelectArea();
selectArea.init({trigger:$('#txt_area'),value:$('#hd_area').val(),data:'data.json'});
</script>
</body>
</html>
属性及方法
position:'bottom'
当这个值为bottom时,弹层固定显示在底部,不传时居中显示,默认居中.
default:0||1
trigger:
value:
level: int
separator: ,
eventName:tap|click
触发事件名称,默认click,使用zeptojs的可以用tap事件
data:
当data为json对象时可以直接解析,此时直接接收数组
当data为string发送ajax请求后返回json,格式如下:
{
"data": [{
"id": 1,
"name": "浙江省",
"child": [{
"id": "1",
"name": "杭州市",
"child": [{
"id": 1,
"name": "滨江区"
}]
}]
}, {
"id": 2,
"name": "江苏省",
"child": [{
"id": "1",
"name": "南京",
"child": [{
"id": 1,
"name": "解放区"
}]
}]
}, {
"id": 3,
"name": "湖北省"
}]
}
show:function()
直接显示弹窗的方法
selectArea2.show();
callback:function(scroller,text,value)
第一个是容器,第二个是选中后的text值,第三个参数是选中后的id。
并且this指向当前对象。
选中后的回调,默认有填充trigger的value值,以及赋值它后面紧跟着的hidden的value值,以逗号分隔id,空格分隔文字
cancelCallback(scroller,text,value)
点击取消时的回调,与`callback`参数相同,`this`指向当前对象
autoHide : bool
点击遮罩层时退出窗口,与取消同样,默认为true.
|
请发表评论