⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tree.js

📁 JSP(Java Server Pages)是由Sun Microsystems公司倡导、许多公司参与一起建立的一种动态网页技术标准。 JSP技术是用JAVA语言作为脚本语言的
💻 JS
字号:
function nodeHide(id) {
	$('#'+id+'-co').hide();
	$('#'+id+'-fo').hide();
	$('#'+id+'-cc').show();
	$('#'+id+'-fc').show();
	$('#'+id+'-').hide(60);
}

function nodeShow(id) {
	$('#'+id+'-cc').hide();
	$('#'+id+'-fc').hide();
	$('#'+id+'-co').show();
	$('#'+id+'-fo').show();
	$('#'+id+'-').show(60);	
}

function lineOver(id) {
	$('#'+id).addClass("hover");	
}

function lineOut(id) {
	$('#'+id).removeClass("hover");	
}

function lineSelected(id) {
	if(t_selected_id){
		$('#'+t_selected_id).removeClass("selected");	
	}
	t_selected_id=id;
	$('#'+id).addClass("selected");	
}

⌨️ 快捷键说明

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