解决方案 »

  1.   

    add = function(f){
            var url = "materialMgmt/toMaterialEditPage.do?f="+f;        
            var content = '<iframe  src="' + url + '" width="100%" height="80%" marginwidth="0px"  style="z-index:-1;" frameborder="0" scrolling="no"></iframe>';       
            var win = $('#add').window({
                            content: content,
                            //href:url,
                            modal: true,
                            fit : true,
                            closable : false,
                            border : false,
                            noheader : true                     
                            });
             win.window('open');   
        }
    iframe放在一个window里url对应的jsp页面里的一个form里input渲染成下拉树
     $('#cateName').combotree({
             url : Mr.Consts.AppBase +'materialCategory/listTreeNode.do',
             editable : true,
             lines : true,       
             panelHeight : 100       
         });
    就会出现那个问题
      

  2.   

    改成这样试试呢?
     $('#add').window({
                             content: content,
                             //href:url,
                             modal: true,
                             fit : true,
                             closable : false,
                             border : false,
                             noheader : true                     
     });
     $('#add').window('open');
      
      

  3.   

    ie下没问题,,ff下出现这个问题,,