rootnode.js

来自「YahooUI,搞WEB开发的朋友值得看一看」· JavaScript 代码 · 共 31 行

JS
31
字号
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. *//** * A custom YAHOO.widget.Node that handles the unique nature of  * the virtual, presentationless root node. * * @extends YAHOO.widget.Node * @constructor */YAHOO.widget.RootNode = function(oTree) {	// Initialize the node with null params.  The root node is a	// special case where the node has no presentation.  So we have	// to alter the standard properties a bit.	this.init(null, null, true);		/**	 * For the root node, we get the tree reference from as a param	 * to the constructor instead of from the parent element.	 *	 * @type TreeView	 */	this.tree = oTree;};YAHOO.widget.RootNode.prototype = new YAHOO.widget.Node();// overrides YAHOO.widget.NodeYAHOO.widget.RootNode.prototype.getNodeHtml = function() { 	return ""; };

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?