如图,我想点击'java技术'展开,同时右边框架打开链接的页面,而不是点前面的'+'号才展开,怎么做呢?

解决方案 »

  1.   

    还是批注一下解决办法,
    function showlistaddr(foldertype,fullid,curfoldertype,subtype,FolderName,ii){ var listall = "false";
    if(document.getElementById("showsuball").checked){
    listall = "true";
    }

    if(subtype == "fill"){
    document.addrlist.location = "addrfill.jsp?showsuball=" +
    this.document.getElementById("showsuball").checked + "&curfoldertype=" + curfoldertype + "&foldertype=" + foldertype + "&folderid=" + fullid+"&FolderName="+FolderName;
    }else{
        document.addrlist.location = "addrlist.jsp?showsuball=" +
    this.document.getElementById("showsuball").checked + "&curfoldertype=" + curfoldertype + "&foldertype=" + foldertype + "&folderid=" + fullid+"&FolderName="+FolderName;
    }
    d.o(ii);//重点
    }