combotree 禁止选中某一项
程序员文章站
2022-05-18 20:48:11
...
combotree 禁止选中某一项
$("#id").combotree({//只能选择到末尾项
onBeforeSelect: function(node) {
if (!$(this).tree('isLeaf', node.target)) {return false;}
},
onSelect: function (node){
//让弹出框显示在最前面
$(‘#id’).combotree(‘tree’).tree(‘expandAll’, node.target);
}
});
上一篇: python爬取网站视频保存到本地
下一篇: PHP 核心特性 - 错误处理