- 注册时间
- 2017-8-4
- 最后登录
- 2024-9-13
- 阅读权限
- 10
- 积分
- 353
- 精华
- 0
- 帖子
- 30
|
- var trees = mini.findControls(function(control){
- if(control.type == "tree") return true;
- });
- $(trees).each(function(i,tree){
- tree.on('drawnode',function () {
- });
- tree.on('nodeselect',function (e) {
- var node = e.node, records = e.records;
- });
- tree.on('beforeload',function () {
- });
- tree.load(function () {
- alert(23222);
- });
- });
复制代码 tree.load和beforeload方法不执行是什么原因?用var tree = mini.get(id")然后用tree.load方法就管用
|
|