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

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

?? dtree.js

?? 醫院信息系統(Hospital Information System
?? JS
字號:
/*--------------------------------------------------|| dTree 2.05 | www.destroydrop.com/javascript/tree/ ||---------------------------------------------------|| Copyright (c) 2002-2003 Geir Landr\uFFFD               ||                                                   || This script can be used freely as long as all     || copyright messages are intact.                    ||                                                   || Updated: 17.04.2003                               ||--------------------------------------------------*/// Node objectfunction Node(id, pid, name, url, title, target, icon, iconOpen, open) {	this.id = id;	this.pid = pid;	this.name = name;	this.url = encodeURI(url).replace(/\%/g,"!");	this.title = title;	this.target = target;	this.icon = icon;	this.iconOpen = iconOpen;	this._io = open || false;	this._is = false;	this._ls = false;	this._hc = false;	this._ai = 0;	this._p;};// Tree objectfunction dTree(objName) {	this.config = {		target					: null,		folderLinks			: true,		useSelection		: true,		useCookies			: true,		useLines				: true,		useIcons				: true,		useStatusText		: false,		closeSameLevel	: false,		inOrder					: false	}	this.icon = {		root				: 'dtree/img/base.gif',		folder			: 'dtree/img/folder.gif',		folderOpen	: 'dtree/img/folderopen.gif',		node				: 'dtree/img/page.gif',		empty				: 'dtree/img/empty.gif',		line				: 'dtree/img/line.gif',		join				: 'dtree/img/join.gif',		joinBottom	: 'dtree/img/joinbottom.gif',		plus				: 'dtree/img/plus.gif',		plusBottom	: 'dtree/img/plusbottom.gif',		minus				: 'dtree/img/minus.gif',		minusBottom	: 'dtree/img/minusbottom.gif',		nlPlus			: 'dtree/img/nolines_plus.gif',		nlMinus			: 'dtree/img/nolines_minus.gif'	};	this.obj = objName;	this.aNodes = [];	this.aIndent = [];	this.root = new Node(-1);	this.selectedNode = null;	this.selectedFound = false;	this.completed = false;};// Adds a new node to the node arraydTree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open) {	this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open);};// Open/close all nodesdTree.prototype.openAll = function() {	this.oAll(true);};dTree.prototype.closeAll = function() {	this.oAll(false);};// Outputs the tree to the pagedTree.prototype.toString = function() {	var str = '<div class="dtree">\n';	if (document.getElementById) {		if (this.config.useCookies) this.selectedNode = this.getSelected();		str += this.addNode(this.root);	} else str += 'Browser not supported.';	str += '</div>';	if (!this.selectedFound) this.selectedNode = null;	this.completed = true;	return str;};// Creates the tree structuredTree.prototype.addNode = function(pNode) {	var str = '';	var n=0;	if (this.config.inOrder) n = pNode._ai;	for (n; n<this.aNodes.length; n++) {		if (this.aNodes[n].pid == pNode.id) {			var cn = this.aNodes[n];			cn._p = pNode;			cn._ai = n;			this.setCS(cn);			if (!cn.target && this.config.target) cn.target = this.config.target;			if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);			if (!this.config.folderLinks && cn._hc) cn.url = null;			if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {					cn._is = true;					this.selectedNode = n;					this.selectedFound = true;			}			str += this.node(cn, n);			if (cn._ls) break;		}	}	return str;};// Creates the node icon, url and textdTree.prototype.node = function(node, nodeId) {	var str = '<div class="dTreeNode">' + this.indent(node, nodeId);	if (this.config.useIcons) {		if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);		if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;		if (this.root.id == node.pid) {			node.icon = this.icon.root;			node.iconOpen = this.icon.root;		}		str += '<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />';	}	if (node.url) {		str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" href="' + node.url + '"';		if (node.title) str += ' title="' + node.title + '"';		if (node.target) str += ' target="' + node.target + '"';		if (this.config.useStatusText) str += ' onmouseover="window.status=\'' + node.name + '\';return true;" onmouseout="window.status=\'\';return true;" ';		if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))			str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';		str += '>';	}	else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)		str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';	str += node.name;	if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>';	str += '</div>';	if (node._hc) {		str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">';		str += this.addNode(node);		str += '</div>';	}	this.aIndent.pop();	return str;};// Adds the empty and line iconsdTree.prototype.indent = function(node, nodeId) {	var str = '';	if (this.root.id != node.pid) {		for (var n=0; n<this.aIndent.length; n++)			str += '<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';		(node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);		if (node._hc) {			str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';			if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;			else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );			str += '" alt="" /></a>';		} else str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />';	}	return str;};// Checks if a node has any children and if it is the last siblingdTree.prototype.setCS = function(node) {	var lastId;	for (var n=0; n<this.aNodes.length; n++) {		if (this.aNodes[n].pid == node.id) node._hc = true;		if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;	}	if (lastId==node.id) node._ls = true;};// Returns the selected nodedTree.prototype.getSelected = function() {	var sn = this.getCookie('cs' + this.obj);	return (sn) ? sn : null;};// Highlights the selected nodedTree.prototype.s = function(id) {	if (!this.config.useSelection) return;	var cn = this.aNodes[id];	if (cn._hc && !this.config.folderLinks) return;	if (this.selectedNode != id) {		if (this.selectedNode || this.selectedNode==0) {			eOld = document.getElementById("s" + this.obj + this.selectedNode);			eOld.className = "node";		}		eNew = document.getElementById("s" + this.obj + id);		eNew.className = "nodeSel";		this.selectedNode = id;		if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);	}};// Toggle Open or closedTree.prototype.o = function(id) {	var cn = this.aNodes[id];	this.nodeStatus(!cn._io, id, cn._ls);	cn._io = !cn._io;	if (this.config.closeSameLevel) this.closeLevel(cn);	if (this.config.useCookies) this.updateCookie();};// Open or close all nodesdTree.prototype.oAll = function(status) {	for (var n=0; n<this.aNodes.length; n++) {		if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {			this.nodeStatus(status, n, this.aNodes[n]._ls)			this.aNodes[n]._io = status;		}	}	if (this.config.useCookies) this.updateCookie();};// Opens the tree to a specific nodedTree.prototype.openTo = function(nId, bSelect, bFirst) {	if (!bFirst) {		for (var n=0; n<this.aNodes.length; n++) {			if (this.aNodes[n].id == nId) {				nId=n;				break;			}		}	}	var cn=this.aNodes[nId];	if (cn.pid==this.root.id || !cn._p) return;	cn._io = true;	cn._is = bSelect;	if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);	if (this.completed && bSelect) this.s(cn._ai);	else if (bSelect) this._sn=cn._ai;	this.openTo(cn._p._ai, false, true);};// Closes all nodes on the same level as certain nodedTree.prototype.closeLevel = function(node) {	for (var n=0; n<this.aNodes.length; n++) {		if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {			this.nodeStatus(false, n, this.aNodes[n]._ls);			this.aNodes[n]._io = false;			this.closeAllChildren(this.aNodes[n]);		}	}}// Closes all children of a nodedTree.prototype.closeAllChildren = function(node) {	for (var n=0; n<this.aNodes.length; n++) {		if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {			if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);			this.aNodes[n]._io = false;			this.closeAllChildren(this.aNodes[n]);		}	}}// Change the status of a node(open or closed)dTree.prototype.nodeStatus = function(status, id, bottom) {	eDiv	= document.getElementById('d' + this.obj + id);	eJoin	= document.getElementById('j' + this.obj + id);	if (this.config.useIcons) {		eIcon	= document.getElementById('i' + this.obj + id);		eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;	}	eJoin.src = (this.config.useLines)?	((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):	((status)?this.icon.nlMinus:this.icon.nlPlus);	eDiv.style.display = (status) ? 'block': 'none';};// [Cookie] Clears a cookiedTree.prototype.clearCookie = function() {	var now = new Date();	var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);	this.setCookie('co'+this.obj, 'cookieValue', yesterday);	this.setCookie('cs'+this.obj, 'cookieValue', yesterday);};// [Cookie] Sets value in a cookiedTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {	document.cookie =		escape(cookieName) + '=' + escape(cookieValue)		+ (expires ? '; expires=' + expires.toGMTString() : '')		+ (path ? '; path=' + path : '')		+ (domain ? '; domain=' + domain : '')		+ (secure ? '; secure' : '');};// [Cookie] Gets a value from a cookiedTree.prototype.getCookie = function(cookieName) {	var cookieValue = '';	var posName = document.cookie.indexOf(escape(cookieName) + '=');	if (posName != -1) {		var posValue = posName + (escape(cookieName) + '=').length;		var endPos = document.cookie.indexOf(';', posValue);		if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));		else cookieValue = unescape(document.cookie.substring(posValue));	}	return (cookieValue);};// [Cookie] Returns ids of open nodes as a stringdTree.prototype.updateCookie = function() {	var str = '';	for (var n=0; n<this.aNodes.length; n++) {		if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {			if (str) str += '.';			str += this.aNodes[n].id;		}	}	this.setCookie('co' + this.obj, str);};// [Cookie] Checks if a node id is in a cookiedTree.prototype.isOpen = function(id) {	var aOpen = this.getCookie('co' + this.obj).split('.');	for (var n=0; n<aOpen.length; n++)		if (aOpen[n] == id) return true;	return false;};// If Push and pop is not implemented by the browserif (!Array.prototype.push) {	Array.prototype.push = function array_push() {		for(var i=0;i<arguments.length;i++)			this[this.length]=arguments[i];		return this.length;	}};if (!Array.prototype.pop) {	Array.prototype.pop = function array_pop() {		lastElement = this[this.length-1];		this.length = Math.max(this.length-1,0);		return lastElement;	}};

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产又黄又大久久| 极品少妇xxxx精品少妇偷拍| 成人激情图片网| 国产精品久久久久久久久晋中| 丁香啪啪综合成人亚洲小说| 国产精品久久毛片a| 色婷婷综合久久久久中文一区二区| **性色生活片久久毛片| 欧洲视频一区二区| 视频精品一区二区| 久久亚洲综合av| 99久久99久久精品国产片果冻| 1区2区3区精品视频| 精品视频999| 国产综合色精品一区二区三区| 国产三级一区二区| 在线视频国内一区二区| 免费成人在线网站| 欧美极品xxx| 欧美午夜精品免费| 韩国精品主播一区二区在线观看| 国产精品久久夜| 欧美日韩一级黄| 国产精品一级片在线观看| 国产精品免费免费| 91视频国产观看| 青娱乐精品在线视频| 国产网红主播福利一区二区| 色94色欧美sute亚洲线路二 | 亚洲一区在线观看免费| 欧美一级精品在线| 北条麻妃一区二区三区| 天堂在线亚洲视频| 中文字幕乱码一区二区免费| 欧美综合久久久| 国产一区二区女| 亚洲va欧美va人人爽午夜| 久久久777精品电影网影网| 日本大香伊一区二区三区| 韩国女主播成人在线| 一区二区三区色| 久久久久亚洲综合| 欧美精品电影在线播放| 9久草视频在线视频精品| 日韩av不卡在线观看| 亚洲欧美视频在线观看| 26uuu久久天堂性欧美| 在线视频中文字幕一区二区| 国产成人免费视频网站高清观看视频 | 一本色道**综合亚洲精品蜜桃冫| 久久国产视频网| 亚洲福利视频一区| |精品福利一区二区三区| 久久色中文字幕| 91精品在线一区二区| 日本丶国产丶欧美色综合| 国产成+人+日韩+欧美+亚洲| 老司机免费视频一区二区| 亚洲成a人v欧美综合天堂| 国产精品国模大尺度视频| 久久这里只有精品视频网| 在线播放91灌醉迷j高跟美女| 91香蕉国产在线观看软件| 国产不卡免费视频| 韩国av一区二区三区四区| 日本美女一区二区三区视频| 亚洲一区二区在线观看视频| 亚洲视频资源在线| 国产精品久久久久桃色tv| 国产亚洲精品资源在线26u| 欧美白人最猛性xxxxx69交| 欧美精选一区二区| 欧美久久久影院| 91精品欧美久久久久久动漫| 在线观看视频一区| 欧美在线播放高清精品| 色婷婷一区二区| 91黄视频在线观看| 欧美在线制服丝袜| 在线观看免费一区| 欧美日韩色一区| 欧美一区2区视频在线观看| 欧美一区二区三区四区高清| 91精品综合久久久久久| 91精品国产手机| 亚洲精品中文字幕在线观看| 亚洲欧美一区二区不卡| 亚洲在线中文字幕| 日韩国产精品久久久| 美女国产一区二区三区| 激情欧美一区二区| 成人综合激情网| 色综合久久中文综合久久牛| 色噜噜狠狠成人中文综合 | 欧美性三三影院| 欧美日韩一区二区不卡| 制服丝袜成人动漫| 日韩欧美久久一区| 欧美极品另类videosde| 亚洲精品免费一二三区| 日韩专区欧美专区| 九九久久精品视频| 成人白浆超碰人人人人| av在线不卡观看免费观看| 色天使色偷偷av一区二区 | 在线综合视频播放| 久久久久久99久久久精品网站| 欧美国产一区视频在线观看| 最新国产成人在线观看| 偷拍日韩校园综合在线| 青青草国产成人99久久| 国产精品自拍在线| 欧美中文字幕一二三区视频| 日韩一区二区麻豆国产| 国产日产欧美一区二区视频| 亚洲综合一区二区| 蜜桃精品在线观看| 99精品国产视频| 91精品国产全国免费观看 | 欧美电影一区二区三区| 久久一日本道色综合| 亚洲激情一二三区| 国产综合久久久久影院| 91久久一区二区| 精品不卡在线视频| 亚洲欧美日韩国产另类专区| 日本欧美肥老太交大片| www.欧美亚洲| 精品美女在线观看| 亚洲自拍偷拍欧美| 国产精品1区2区3区| 精品视频在线免费| 国产精品久久午夜夜伦鲁鲁| 日本女优在线视频一区二区| 99国产精品久久久久久久久久 | 日韩视频一区二区三区| 亚洲日本电影在线| 国产一区二区不卡在线| 欧美剧在线免费观看网站| 欧美国产精品久久| 秋霞av亚洲一区二区三| 欧美色视频在线观看| 国产精品人妖ts系列视频| 久久er99精品| 欧美精品第1页| 亚洲乱码国产乱码精品精的特点| 国产精品 日产精品 欧美精品| 欧美日本一区二区在线观看| 亚洲日本韩国一区| 国产精品一区二区黑丝| 欧美大白屁股肥臀xxxxxx| 亚洲国产日产av| 国产亚洲污的网站| 久久精品理论片| 91精品在线一区二区| 亚洲一区二区三区四区在线观看| 成人激情黄色小说| 中文字幕巨乱亚洲| 国产精品18久久久久久vr| 精品蜜桃在线看| 精品中文字幕一区二区| 91麻豆精品国产| 日韩高清一区在线| 欧美一区二视频| 日韩一区精品字幕| 欧美一区二区在线免费播放| 日韩专区欧美专区| 欧美一区二区视频在线观看2022| 爽爽淫人综合网网站| 欧美日韩在线观看一区二区| 亚洲自拍偷拍网站| 欧美日韩大陆一区二区| 亚洲自拍偷拍九九九| 欧美人牲a欧美精品| 日韩国产一区二| 91精品国产手机| 久久99精品久久久久婷婷| 欧美成人精品高清在线播放| 精一区二区三区| 国产色产综合产在线视频| 国产美女视频91| 久久色成人在线| 成人激情小说网站| 亚洲精品成人悠悠色影视| 在线视频你懂得一区| 石原莉奈在线亚洲三区| 精品久久久久香蕉网| 精品一区二区日韩| 国产精品私人影院| 色婷婷久久久综合中文字幕| 亚洲成a人v欧美综合天堂下载| 日韩一区二区免费在线观看| 国产一区亚洲一区| 亚洲欧洲日产国产综合网| 在线观看精品一区| 蓝色福利精品导航| 国产精品视频你懂的| 欧美性生交片4| 麻豆国产一区二区| 中文字幕制服丝袜成人av|