本文共 735 字,大约阅读时间需要 2 分钟。
只能是 id 与 text的固定组合
是数据来源
$(function () {
$('#').combotree({
valueField: "id", //Value字段
textField: "text", //Text字段
multiple: true,
data: [{ "id": "0", "text": "All", "children": }]
,
data: [{ "id": "0", "text": "All", "children": [{ "id": 13, "text": "C1" }, { "id": 14, "text": "C2" }, { "id": 15, "text": "C3"}]}]
,
//url: "tree_data2.json", //数据源
onCheck: function (node, checked) {
//让全选不显示
$("#").combotree("setText", $("#").combobox("getText").toString().replace("全选,", ""));
},
onClick: function (node, checked) {
//让全选不显示
$("#").combotree("setText", $("#").combobox("getText").toString().replace("全选,", ""));
}
});
});
var youpin = document.getElementById("_easyui_textbox_input3").value; 选中的值 //_easyui_textbox_input3 替换成对应id
转载地址:http://jxdnv.baihongyu.com/