BootStrap select2 动态改变值的方法
var temp=JSON.stringify({ id: "1|所有停车场", name: "所有停车场" });
$("#e_pid").attr("value", tempP);
$("#e_pid").select2({
placeholder: "查找停车场名称(多选)",
language: "zh-CN",
minimumInputLength: 1,
allowClear: true,
multiple: true,
ajax: {
// instead of writing the function to execute the request we use Select2's convenient helper
url: "/manage/park/index/json/index",
dataType: 'json',
data: function (term, page) {
return {
parkName: term,// search term
powerpid: "1"
};
},
results: function (data, page) { // parse the results into the format expected by Select2.
// since we are using custom formatting functions we do not need to alter remote JSON data
for (var i = 0; i < data.length; i++) {
data[i].id = data[i].id+"|"+data[i].name;
};
data.push({ id: "577cb125f8d2c404572413d1|无", name: "无" });
return {
results: data
};
}
},
initSelection: function (element, callback) {
//赋初始值
// the input tag has a value attribute preloaded that points to a preselected movie's id
// this function resolves that id attribute to an object that select2 can render
// using its formatResult renderer - that way the movie name is shown preselected
var data = [];
var value = ""
var str = $(element).val().split('^');
for (var i = 0; i < str.length; i++) {
var temp = JSON.parse(str[i]);
value += temp.id + ",";
data.push(temp);
}
;
value = value.substring(0, value.length - 1);
$(element).val(value);
callback(data);
},
formatSelection: function (item) {
return item.name;//注意此处的name,要和ajax返回数组的键值一样
}, // 选择结果中的显示
formatResult: function (item) {
return item.name;//注意此处的name
},// 搜索列表中的显示
dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller
escapeMarkup: function (m) {
return m;
}
});
- .NET Core系列之MemoryCache 初识
- 007手机一键Root(安机网一键Root) v3.0 官方最新版 一键ROOT您的Android手机
- 12306密码被盗了怎么办?12306密码外泄解决方法
- 12个字的qq网名
- 150M迷你型无线路由器怎么设置?
- 192.168.1.1打不开怎么办?路由器192.168.1.1打不开的原因以及解决办法
- 2011年电子报合订本 电子报 编辑部 中文 PDF版 [84M]
- 2015年1月15日小米新旗舰发布会现场图文直播
- 2016.3.1vivo Xplay5新品发布会现场视频直播 优酷直播
- 2016华为P9发布会视频直播地址 4月15日华为P9国行发布会直播
相关文章
- Adobe Soundbooth CS5(音频处理软件) V3.0 官方版
- Bootstrap使用基础教程详解
- bootstrap-table获取表格数据的多种方式
- boot.ini文件在哪 怎样打开boot.ini文件
- BootSkin(更换Windows系统启动画面) v1.05a 中文汉化安装版(附汉化补丁+教程)
- Android系统底层Reboot流程源码解读
- Bootstrap3.0学习笔记之按钮的样式
- BootCamp怎么制作WIN10启动U盘和驱动 Mac Bootcamp 安装Win10 图文教程
- BootXP(登陆界面更换器) v2.50 免费安装版
- BootstrapTable+KnockoutJS相结合实现增删改查解决方案(三)两个Viewmodel搞定增删改查