Home >Backend Development >PHP Tutorial >Continuing the previous code_PHP tutorial

Continuing the previous code_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:59:581126browse

function outputFolderLink() {
    if(this.hreference && this.target) {
        doc.write("        if(browserVersion > 0) {
       doc.write("onClick='JavaScript: clickOnFolder("+this.id+")'")
        }
        doc.write(">")
    }
    else
        doc.write("")
}
function addChild(childNode) {
    selectfile[fEntries]=childNode.desc;
    fEntries++;
    this.children[this.nChildren] = childNode;
    this.nChildren++;
    return(childNode);
}
function folderSubEntries() {
    var i = 0;
    var se = this.nChildren;
    for(i = 0; i         if(this.children[i].children) //is a folder
       se = se + this.children[i].subEntries();
    }
    return(se)
}
// Definition of class Item (a document or link inside a Folder)
function Item(itemDescription, hreference, itemLink, itemImg,parentid) // Constructor
{
    // constant data
    this.desc = itemDescription
    this.link = itemLink
    this.hreference = hreference;
    this.id =index;
    this.navObj = 0;    //initialized in render()

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631842.htmlTechArticlefunction outputFolderLink() { if(this.hreference this.target) { doc.write(A HREF=' + this.hreference + ' TARGET=+this.target.name+ ) if(browserVersion 0) { doc.write(onClick='JavaSc...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn