- 注册时间
 - 2014-11-8
 - 最后登录
 - 1970-1-1
 - 阅读权限
 - 10
 - 积分
 - 25
 - 精华
 - 0
 - 帖子
 - 4
  
 
 
 
  
 | 
 本帖最后由 HaKuNaMaTaTa 于 2014-11-11 15:32 编辑  
dforce 发表于 2014-11-10 16:46    
谢谢,不过我试了,还是不行,我换成这种方式IE就可以兼容:(但是loadList方法在旧版本无法使用,loadData生成的树又不是所想要的)- var userTreeWindow = mini.get("userTreeWindow");
 
 -         
 
 - var userTree = mini.get("userTree");
 
 - var messageid1 = mini.loading("加载中,请稍后...","加载中");
 
 - $.ajax({
 
 -                 type: "POST",
 
 -                 url: "<%=path%>/summaryCaseAction.do?op=getUserList",
 
 -                 contentType: "application/x-www-form-urlencoded; charset=utf-8",
 
 -                 success: function (result) {
 
 -                         var o = mini.decode(result);
 
 -                         userTree.loadList(o, "id","pid");
 
 -                         mini.hideMessageBox(messageid1);
 
 -                         userTreeWindow.show();
 
 -                        },
 
 -                 error:function(){
 
 -                            mini.alert("网络出现异常.");
 
 -                 }         
 
 -    });
 
  复制代码 |   
 
  
 |