📄 tree.js
字号:
//****************************************************************************
//【版权所有·尊重他人创作】
// History:
// Created by 郭宝华(bob guo), bhguo@163.com, 2003.12.17
//****************************************************************************
var Node_Expand = "ToExpand"
var Node_Collapse = "ToCollapse"
function NodeTurn()
{
theElement=window.event.srcElement;
theParent=theElement.parentElement;
if (theElement.name == Node_Expand)
{
theElement.name = Node_Collapse;
theElement.src="../../images/collaps.gif"
for (var i = 2; i < theParent.children.length; i++)
theParent.children(i).style.display = "block";
}
else if (theElement.name == Node_Collapse)
{
theElement.name = Node_Expand;
theElement.src="../../images/expand.gif"
for (var i = 2; i < theParent.children.length; i++)
theParent.children(i).style.display="none";
}
}
function HideStatus()
{
window.status=" ";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -