亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? treeview-debug.js

?? 目錄樹,在腳本中可以直接調用后臺java代碼,動態加載數據至頁面顯示.
?? JS
?? 第 1 頁 / 共 5 頁
字號:
     * @type boolean     * @default false     */    nowrap: false,    /**     * The node type     * @property _type     * @private     */    _type: "Node",    /*    spacerPath: "http://us.i1.yimg.com/us.yimg.com/i/space.gif",    expandedText: "Expanded",    collapsedText: "Collapsed",    loadingText: "Loading",    */    /**     * Initializes this node, gets some of the properties from the parent     * @method init     * @param oData {object} a string or object containing the data that will     * be used to render this node     * @param oParent {Node} this node's parent node     * @param expanded {boolean} the initial expanded/collapsed state     */    init: function(oData, oParent, expanded) {        this.data       = oData;        this.children   = [];        this.index      = YAHOO.widget.TreeView.nodeCount;        ++YAHOO.widget.TreeView.nodeCount;        this.expanded   = expanded;        this.logger     = new YAHOO.widget.LogWriter(this.toString());        /**         * The parentChange event is fired when a parent element is applied         * to the node.  This is useful if you need to apply tree-level         * properties to a tree that need to happen if a node is moved from         * one tree to another.         *         * @event parentChange         * @type CustomEvent         */        this.createEvent("parentChange", this);        // oParent should never be null except when we create the root node.        if (oParent) {            oParent.appendChild(this);        }    },    /**     * Certain properties for the node cannot be set until the parent     * is known. This is called after the node is inserted into a tree.     * the parent is also applied to this node's children in order to     * make it possible to move a branch from one tree to another.     * @method applyParent     * @param {Node} parentNode this node's parent node     * @return {boolean} true if the application was successful     */    applyParent: function(parentNode) {        if (!parentNode) {            return false;        }        this.tree   = parentNode.tree;        this.parent = parentNode;        this.depth  = parentNode.depth + 1;        if (!this.href) {            this.href = "javascript:" + this.getToggleLink();        }        // @todo why was this put here.  This causes new nodes added at the        // root level to lose the menu behavior.        // if (! this.multiExpand) {            // this.multiExpand = parentNode.multiExpand;        // }        this.tree.regNode(this);        parentNode.childrenRendered = false;        // cascade update existing children        for (var i=0, len=this.children.length;i<len;++i) {            this.children[i].applyParent(this);        }        this.fireEvent("parentChange");        return true;    },    /**     * Appends a node to the child collection.     * @method appendChild     * @param childNode {Node} the new node     * @return {Node} the child node     * @private     */    appendChild: function(childNode) {        if (this.hasChildren()) {            var sib = this.children[this.children.length - 1];            sib.nextSibling = childNode;            childNode.previousSibling = sib;        }        this.children[this.children.length] = childNode;        childNode.applyParent(this);        // part of the IE display issue workaround. If child nodes        // are added after the initial render, and the node was        // instantiated with expanded = true, we need to show the        // children div now that the node has a child.        if (this.childrenRendered && this.expanded) {            this.getChildrenEl().style.display = "";        }        return childNode;    },    /**     * Appends this node to the supplied node's child collection     * @method appendTo     * @param parentNode {Node} the node to append to.     * @return {Node} The appended node     */    appendTo: function(parentNode) {        return parentNode.appendChild(this);    },    /**    * Inserts this node before this supplied node    * @method insertBefore    * @param node {Node} the node to insert this node before    * @return {Node} the inserted node    */    insertBefore: function(node) {        this.logger.log("insertBefore: " + node);        var p = node.parent;        if (p) {            if (this.tree) {                this.tree.popNode(this);            }            var refIndex = node.isChildOf(p);            //this.logger.log(refIndex);            p.children.splice(refIndex, 0, this);            if (node.previousSibling) {                node.previousSibling.nextSibling = this;            }            this.previousSibling = node.previousSibling;            this.nextSibling = node;            node.previousSibling = this;            this.applyParent(p);        }        return this;    },     /**    * Inserts this node after the supplied node    * @method insertAfter    * @param node {Node} the node to insert after    * @return {Node} the inserted node    */    insertAfter: function(node) {        this.logger.log("insertAfter: " + node);        var p = node.parent;        if (p) {            if (this.tree) {                this.tree.popNode(this);            }            var refIndex = node.isChildOf(p);            this.logger.log(refIndex);            if (!node.nextSibling) {                this.nextSibling = null;                return this.appendTo(p);            }            p.children.splice(refIndex + 1, 0, this);            node.nextSibling.previousSibling = this;            this.previousSibling = node;            this.nextSibling = node.nextSibling;            node.nextSibling = this;            this.applyParent(p);        }        return this;    },    /**    * Returns true if the Node is a child of supplied Node    * @method isChildOf    * @param parentNode {Node} the Node to check    * @return {boolean} The node index if this Node is a child of     *                   supplied Node, else -1.    * @private    */    isChildOf: function(parentNode) {        if (parentNode && parentNode.children) {            for (var i=0, len=parentNode.children.length; i<len ; ++i) {                if (parentNode.children[i] === this) {                    return i;                }            }        }        return -1;    },    /**     * Returns a node array of this node's siblings, null if none.     * @method getSiblings     * @return Node[]     */    getSiblings: function() {        return this.parent.children;    },    /**     * Shows this node's children     * @method showChildren     */    showChildren: function() {        if (!this.tree.animateExpand(this.getChildrenEl(), this)) {            if (this.hasChildren()) {                this.getChildrenEl().style.display = "";            }        }    },    /**     * Hides this node's children     * @method hideChildren     */    hideChildren: function() {        this.logger.log("hiding " + this.index);        if (!this.tree.animateCollapse(this.getChildrenEl(), this)) {            this.getChildrenEl().style.display = "none";        }    },    /**     * Returns the id for this node's container div     * @method getElId     * @return {string} the element id     */    getElId: function() {        return "ygtv" + this.index;    },    /**     * Returns the id for this node's children div     * @method getChildrenElId     * @return {string} the element id for this node's children div     */    getChildrenElId: function() {        return "ygtvc" + this.index;    },    /**     * Returns the id for this node's toggle element     * @method getToggleElId     * @return {string} the toggel element id     */    getToggleElId: function() {        return "ygtvt" + this.index;    },    /*     * Returns the id for this node's spacer image.  The spacer is positioned     * over the toggle and provides feedback for screen readers.     * @method getSpacerId     * @return {string} the id for the spacer image     */    /*    getSpacerId: function() {        return "ygtvspacer" + this.index;    },     */    /**     * Returns this node's container html element     * @method getEl     * @return {HTMLElement} the container html element     */    getEl: function() {        return document.getElementById(this.getElId());    },    /**     * Returns the div that was generated for this node's children     * @method getChildrenEl     * @return {HTMLElement} this node's children div     */    getChildrenEl: function() {        return document.getElementById(this.getChildrenElId());    },    /**     * Returns the element that is being used for this node's toggle.     * @method getToggleEl     * @return {HTMLElement} this node's toggle html element     */    getToggleEl: function() {        return document.getElementById(this.getToggleElId());    },    /*     * Returns the element that is being used for this node's spacer.     * @method getSpacer     * @return {HTMLElement} this node's spacer html element     */    /*    getSpacer: function() {        return document.getElementById( this.getSpacerId() ) || {};    },    */    /*    getStateText: function() {        if (this.isLoading) {            return this.loadingText;        } else if (this.hasChildren(true)) {            if (this.expanded) {                return this.expandedText;            } else {                return this.collapsedText;            }        } else {            return "";        }    },    */    /**     * Generates the link that will invoke this node's toggle method     * @method getToggleLink     * @return {string} the javascript url for toggling this node     */    getToggleLink: function() {        return "YAHOO.widget.TreeView.getNode(\'" + this.tree.id + "\'," +             this.index + ").toggle()";    },    /**     * Hides this nodes children (creating them if necessary), changes the     * @method collapse     * toggle style.     */    collapse: function() {        // Only collapse if currently expanded        if (!this.expanded) { return; }        // fire the collapse event handler        var ret = this.tree.onCollapse(this);        if (false === ret) {            this.logger.log("Collapse was stopped by the abstract onCollapse");            return;        }        ret = this.tree.fireEvent("collapse", this);        if (false === ret) {            this.logger.log("Collapse was stopped by a custom event handler");            return;        }        if (!this.getEl()) {            this.expanded = false;        } else {            // hide the child div            this.hideChildren();            this.expanded = false;            this.updateIcon();        }        // this.getSpacer().title = this.getStateText();        ret = this.tree.fireEvent("collapseComplete", this);    },    /**     * Shows this nodes children (creating them if necessary), changes the     * toggle style, and collapses its siblings if multiExpand is not set.     * @method expand     */    expand: function() {        // Only expand if currently collapsed.        if (this.expanded) { return; }        // fire the expand event handler        var ret = this.tree.onExpand(this);        if (false === ret) {            this.logger.log("Expand was stopped by the abstract onExpand");            return;        }                ret = this.tree.fireEvent("expand", this);        if (false === ret) {            this.logger.log("Expand was stopped by the custom event handler");            return;        }        if (!this.getEl()) {            this.expanded = true;            return;        }        if (! this.childrenRendered) {            this.logger.log("children not rendered yet");            this.getChildrenEl().innerHTML = this.renderChildren();        } else {            this.logger.log("CHILDREN RENDERED");        }        this.expanded = true;        this.updateIcon();        // this.getSpacer().title = this.getStateText();        // We do an extra check for children here because the lazy        // load feature can expose nodes that have no children.        // if (!this.hasChildren()) {        if (this.isLoading) {            this.expanded = false;            return;        }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
水野朝阳av一区二区三区| 国产欧美一区二区精品久导航| 亚洲天天做日日做天天谢日日欢| 高清久久久久久| 中文字幕中文乱码欧美一区二区| 99re视频精品| 亚洲国产精品久久久久婷婷884| 欧美午夜电影网| 日韩在线a电影| 精品少妇一区二区三区视频免付费| 激情综合亚洲精品| 国产喂奶挤奶一区二区三区| 成人天堂资源www在线| 亚洲精品视频一区| 5566中文字幕一区二区电影| 看电视剧不卡顿的网站| 久久精品日韩一区二区三区| 99精品一区二区| 婷婷综合五月天| 国产午夜精品福利| 欧洲中文字幕精品| 麻豆国产精品777777在线| 欧美国产日韩亚洲一区| 91国偷自产一区二区开放时间| 日本中文字幕一区二区视频| 久久久久久久一区| 色噜噜狠狠成人网p站| 麻豆精品国产传媒mv男同| 国产精品久线观看视频| 欧美日产国产精品| 国产成人啪免费观看软件| 一区二区三区av电影| 精品日韩成人av| 色婷婷综合久久久久中文一区二区| 日本成人在线不卡视频| 欧美国产精品专区| 91精品欧美一区二区三区综合在| 国产精品乡下勾搭老头1| 亚洲一区在线看| 国产亚洲精品中文字幕| 在线不卡中文字幕| 91在线免费播放| 国内精品自线一区二区三区视频| 亚洲欧美另类图片小说| 久久免费电影网| 欧美日韩大陆在线| 91在线视频播放| 国产一区二区三区在线观看免费| 亚洲国产裸拍裸体视频在线观看乱了| 2020国产精品| 91精品蜜臀在线一区尤物| 99精品国产91久久久久久| 国内精品久久久久影院色| 午夜久久久久久久久| 自拍偷自拍亚洲精品播放| 精品欧美久久久| 这里是久久伊人| 欧美午夜影院一区| 色诱视频网站一区| 成人免费精品视频| 国产精品1区2区3区| 蜜臀av性久久久久蜜臀av麻豆| 亚洲在线一区二区三区| 中文字幕一区二区在线播放| 国产亚洲精品bt天堂精选| 欧美日韩一区二区电影| 色综合视频一区二区三区高清| 国产成人精品免费在线| 久久精品99久久久| 看电影不卡的网站| 老司机一区二区| 六月婷婷色综合| 毛片不卡一区二区| 免费高清成人在线| 日产精品久久久久久久性色| 天天色综合天天| 五月天亚洲婷婷| 天堂av在线一区| 日韩二区三区在线观看| 日一区二区三区| 青青国产91久久久久久| 免费在线观看一区| 久久国产人妖系列| 国内一区二区在线| 成人综合婷婷国产精品久久免费| 成人一区二区三区| 91麻豆自制传媒国产之光| 91麻豆swag| 欧美日产国产精品| 日韩欧美国产一二三区| 久久一二三国产| 国产精品日韩成人| 亚洲女同女同女同女同女同69| 亚洲免费观看高清| 亚欧色一区w666天堂| 日韩精品一级中文字幕精品视频免费观看 | 成人性生交大片免费看视频在线 | 一区在线中文字幕| 中文字幕在线观看一区| 一区二区三区欧美日韩| 香蕉影视欧美成人| 国内外成人在线视频| 成人妖精视频yjsp地址| 欧美在线播放高清精品| 日韩一区二区三区免费看| 2023国产一二三区日本精品2022| 中文字幕成人在线观看| 狠狠色丁香婷综合久久| 成人一级视频在线观看| 在线亚洲一区观看| 欧美大肚乱孕交hd孕妇| 一区二区中文视频| 天天操天天色综合| 国内精品嫩模私拍在线| 一本一本久久a久久精品综合麻豆| 欧美精品aⅴ在线视频| 久久久久久久久久久久久久久99| 亚洲激情图片一区| 久久超碰97人人做人人爱| 99精品视频在线播放观看| 制服丝袜亚洲网站| 中文字幕一区二区三中文字幕| 偷拍亚洲欧洲综合| www.亚洲国产| 日韩一级视频免费观看在线| ...av二区三区久久精品| 日韩激情一区二区| a亚洲天堂av| 欧美成人精品3d动漫h| 一区二区三区鲁丝不卡| 国产精品伊人色| 欧美日韩国产中文| 国产精品久久精品日日| 麻豆精品视频在线观看| 91国产精品成人| 中文字幕av资源一区| 麻豆精品一区二区三区| 欧美天堂亚洲电影院在线播放| 久久久久久久精| 日本成人中文字幕在线视频| 91麻豆成人久久精品二区三区| 久久久久久久久一| 日本一不卡视频| 欧美主播一区二区三区| 国产精品欧美久久久久一区二区| 欧美aaa在线| 欧美午夜理伦三级在线观看| 亚洲欧美影音先锋| 国产乱人伦偷精品视频不卡| 精品欧美乱码久久久久久1区2区 | 国产三级精品视频| 日韩制服丝袜先锋影音| 欧美日韩专区在线| 综合久久综合久久| 成人精品电影在线观看| 国产亚洲精品aa| 国产在线视频不卡二| 精品久久久久av影院| 蜜桃在线一区二区三区| 欧美一级淫片007| 五月天精品一区二区三区| 欧日韩精品视频| 亚洲日本在线a| 91免费视频观看| 一区二区中文视频| 91丨porny丨首页| 亚洲日本va在线观看| k8久久久一区二区三区| 国产精品久久久久久久久果冻传媒| 国产精品一线二线三线| 精品电影一区二区| 国产一区二区三区四区五区入口| 欧美成人一区二区| 韩国女主播成人在线观看| 精品粉嫩aⅴ一区二区三区四区| 国内成+人亚洲+欧美+综合在线 | 欧美在线你懂的| 亚洲国产成人va在线观看天堂| 欧美日韩五月天| 日韩国产欧美三级| 欧美zozo另类异族| 国产成人亚洲综合a∨猫咪| 国产亚洲精久久久久久| aaa国产一区| 亚洲国产美国国产综合一区二区| 欧美日韩国产123区| 裸体一区二区三区| 欧美激情在线一区二区三区| k8久久久一区二区三区| 亚洲丰满少妇videoshd| 日韩欧美亚洲一区二区| 成人深夜视频在线观看| 一区二区欧美国产| 7777精品伊人久久久大香线蕉的| 精品一区二区av| 亚洲欧洲av在线| 91精品婷婷国产综合久久性色| 国产美女视频一区| 亚洲精品亚洲人成人网 | 日本sm残虐另类|