?
/** 可折叠大纲
* 类名 Tree
* 存放位置 xzn/html/tree.php
*/
/** 节点类
* 用于在树中保存相关参数
*
* @param $id 节点号
* @param $text 节点标题
* @param $value 节点参数,一般为url
* @param $image 节点图片
*/
class TreeNode {
var $id;
var $text;
var $value;
var $image;
function TreeNode($id,$text,$value,$image) {
$this-id = $id;
$this-text = $text;
$this-value = $value;
$this-image = $image;
}
}
/** 树类
* 用于保存和输出可折叠大纲
* 可折叠大纲使用FrontPage 2000的JavaScript脚本
*
* 方法
* set()
* 设置节...[ 查看全文 ]