标签:happy http 数据 .text tps cti ios blog 默认值
$(‘#provinceCity_fu‘).click(function(){
var $this = $(this);
new Picker({
"title": ‘请选择地区‘,//标题(可选)
"defaultValue": $(this).text(),//默认值-多个以空格分开(可选)
"type": 3,//需要联动级数[1、2、3](可选)
"data": cityData,//数据(必传)
"keys": {
"id": "Code",
"value": "Name",
"childData": "level"//最多3级联动
},//数组内的键名称(必传,id、text、data)
"callBack": function (val) {
//回调函数(val为选择的值)
$this.text(val);
}
});
});
https://gitee.com/qingruihappy/chajian
标签:happy http 数据 .text tps cti ios blog 默认值
原文地址:http://www.cnblogs.com/qingruihappy/p/7788286.html