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

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

?? tabpane.js

?? phpbased firewall for linux.
?? JS
字號:
/*----------------------------------------------------------------------------\
|                               Tab Pane 1.02                                 |
|-----------------------------------------------------------------------------|
|                         Created by Erik Arvidsson                           |
|                  (http://webfx.eae.net/contact.html#erik)                   |
|                      For WebFX (http://webfx.eae.net/)                      |
|-----------------------------------------------------------------------------|
|                Copyright (c) 2002, 2003, 2006 Erik Arvidsson                |
|-----------------------------------------------------------------------------|
| Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| use this file except in compliance with the License.  You may obtain a copy |
| of the License at http://www.apache.org/licenses/LICENSE-2.0                |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| Unless  required  by  applicable law or  agreed  to  in  writing,  software |
| distributed under the License is distributed on an  "AS IS" BASIS,  WITHOUT |
| WARRANTIES OR  CONDITIONS OF ANY KIND,  either express or implied.  See the |
| License  for the  specific language  governing permissions  and limitations |
| under the License.                                                          |
|-----------------------------------------------------------------------------|
| 2002-01-?? | First working version                                          |
| 2002-02-17 | Cleaned up for 1.0 public version                              |
| 2003-02-18 | Changed from javascript uri for anchors to return false        |
| 2003-03-03 | Added dispose methods to release IE memory                     |
| 2006-05-28 | Changed license to Apache Software License 2.0.                |
|-----------------------------------------------------------------------------|
| Dependencies: *.css           a css file to define the layout               |
|-----------------------------------------------------------------------------|
| Created 2002-01-?? | All changes are in the log above. | Updated 2006-05-28 |
\----------------------------------------------------------------------------*/

// This function is used to define if the browser supports the needed
// features
function hasSupport() {

	if (typeof hasSupport.support != "undefined")
		return hasSupport.support;
	
	var ie55 = /msie 5\.[56789]/i.test( navigator.userAgent );
	
	hasSupport.support = ( typeof document.implementation != "undefined" &&
			document.implementation.hasFeature( "html", "1.0" ) || ie55 )
			
	// IE55 has a serious DOM1 bug... Patch it!
	if ( ie55 ) {
		document._getElementsByTagName = document.getElementsByTagName;
		document.getElementsByTagName = function ( sTagName ) {
			if ( sTagName == "*" )
				return document.all;
			else
				return document._getElementsByTagName( sTagName );
		};
	}

	return hasSupport.support;
}

///////////////////////////////////////////////////////////////////////////////////
// The constructor for tab panes
//
// el : HTMLElement		The html element used to represent the tab pane
// bUseCookie : Boolean	Optional. Default is true. Used to determine whether to us
//						persistance using cookies or not
//
function WebFXTabPane( el, bUseCookie ) {
	if ( !hasSupport() || el == null ) return;
	
	this.element = el;
	this.element.tabPane = this;
	this.pages = [];
	this.selectedIndex = null;
	this.useCookie = bUseCookie != null ? bUseCookie : true;
	
	// add class name tag to class name
	this.element.className = this.classNameTag + " " + this.element.className;
	
	// add tab row
	this.tabRow = document.createElement( "div" );
	this.tabRow.className = "tab-row";
	el.insertBefore( this.tabRow, el.firstChild );

	var tabIndex = 0;
	if ( this.useCookie ) {
		tabIndex = Number( WebFXTabPane.getCookie( "webfxtab_" + this.element.id ) );
		if ( isNaN( tabIndex ) )
			tabIndex = 0;
	}
	this.selectedIndex = tabIndex;
	
	// loop through child nodes and add them
	var cs = el.childNodes;
	var n;
	for (var i = 0; i < cs.length; i++) {
		if (cs[i].nodeType == 1 && cs[i].className == "tab-page") {
			this.addTabPage( cs[i] );
		}
	}
}

WebFXTabPane.prototype.classNameTag = "dynamic-tab-pane-control";

WebFXTabPane.prototype.setSelectedIndex = function ( n ) {
	if (this.selectedIndex != n) {
		if (this.selectedIndex != null && this.pages[ this.selectedIndex ] != null )
			this.pages[ this.selectedIndex ].hide();
		this.selectedIndex = n;
		this.pages[ this.selectedIndex ].show();
		
		if ( this.useCookie )
			WebFXTabPane.setCookie( "webfxtab_" + this.element.id, n );	// session cookie
	}
};
	
WebFXTabPane.prototype.getSelectedIndex = function () {
	return this.selectedIndex;
};
	
WebFXTabPane.prototype.addTabPage = function ( oElement ) {
	if ( !hasSupport() ) return;
	
	if ( oElement.tabPage == this )	// already added
		return oElement.tabPage;

	var n = this.pages.length;
	var tp = this.pages[n] = new WebFXTabPage( oElement, this, n );
	tp.tabPane = this;
	
	// move the tab out of the box
	this.tabRow.appendChild( tp.tab );
			
	if ( n == this.selectedIndex )
		tp.show();
	else
		tp.hide();
		
	return tp;
};
	
WebFXTabPane.prototype.dispose = function () {
	this.element.tabPane = null;
	this.element = null;		
	this.tabRow = null;
	
	for (var i = 0; i < this.pages.length; i++) {
		this.pages[i].dispose();
		this.pages[i] = null;
	}
	this.pages = null;
};



// Cookie handling
WebFXTabPane.setCookie = function ( sName, sValue, nDays ) {
	var expires = "";
	if ( nDays ) {
		var d = new Date();
		d.setTime( d.getTime() + nDays * 24 * 60 * 60 * 1000 );
		expires = "; expires=" + d.toGMTString();
	}

	document.cookie = sName + "=" + sValue + expires + "; path=/";
};

WebFXTabPane.getCookie = function (sName) {
	var re = new RegExp( "(\;|^)[^;]*(" + sName + ")\=([^;]*)(;|$)" );
	var res = re.exec( document.cookie );
	return res != null ? res[3] : null;
};

WebFXTabPane.removeCookie = function ( name ) {
	setCookie( name, "", -1 );
};








///////////////////////////////////////////////////////////////////////////////////
// The constructor for tab pages. This one should not be used.
// Use WebFXTabPage.addTabPage instead
//
// el : HTMLElement			The html element used to represent the tab pane
// tabPane : WebFXTabPane	The parent tab pane
// nindex :	Number			The index of the page in the parent pane page array
//
function WebFXTabPage( el, tabPane, nIndex ) {
	if ( !hasSupport() || el == null ) return;
	
	this.element = el;
	this.element.tabPage = this;
	this.index = nIndex;
	
	var cs = el.childNodes;
	for (var i = 0; i < cs.length; i++) {
		if (cs[i].nodeType == 1 && cs[i].className == "tab") {
			this.tab = cs[i];
			break;
		}
	}
	
	// insert a tag around content to support keyboard navigation
	
	
	var a = document.createElement( "A" );
	this.aElement = a;
	a.href = "#";
	a.onclick = function () { return false; };
	while ( this.tab.hasChildNodes() )
		a.appendChild( this.tab.firstChild );
	this.tab.appendChild( a );

	
	// hook up events, using DOM0
	var oThis = this;
	this.tab.onclick = function () { oThis.select(); };
	this.tab.onmouseover = function () { WebFXTabPage.tabOver( oThis ); };
	this.tab.onmouseout = function () { WebFXTabPage.tabOut( oThis ); };
}

WebFXTabPage.prototype.show = function () {
	var el = this.tab;
	var s = el.className + " selected";
	s = s.replace(/ +/g, " ");
	el.className = s;
	
	this.element.style.display = "block";
};

WebFXTabPage.prototype.hide = function () {
	var el = this.tab;
	var s = el.className;
	s = s.replace(/ selected/g, "");
	el.className = s;

	this.element.style.display = "none";
};
	
WebFXTabPage.prototype.select = function () {
	this.tabPane.setSelectedIndex( this.index );
};
	
WebFXTabPage.prototype.dispose = function () {
	this.aElement.onclick = null;
	this.aElement = null;
	this.element.tabPage = null;
	this.tab.onclick = null;
	this.tab.onmouseover = null;
	this.tab.onmouseout = null;
	this.tab = null;
	this.tabPane = null;
	this.element = null;
};

WebFXTabPage.tabOver = function ( tabpage ) {
	var el = tabpage.tab;
	var s = el.className + " hover";
	s = s.replace(/ +/g, " ");
	el.className = s;
};

WebFXTabPage.tabOut = function ( tabpage ) {
	var el = tabpage.tab;
	var s = el.className;
	s = s.replace(/ hover/g, "");
	el.className = s;
};


// This function initializes all uninitialized tab panes and tab pages
function setupAllTabs() {
	if ( !hasSupport() ) return;

	var all = document.getElementsByTagName( "*" );
	var l = all.length;
	var tabPaneRe = /tab\-pane/;
	var tabPageRe = /tab\-page/;
	var cn, el;
	var parentTabPane;
	
	for ( var i = 0; i < l; i++ ) {
		el = all[i]
		cn = el.className;

		// no className
		if ( cn == "" ) continue;
		
		// uninitiated tab pane
		if ( tabPaneRe.test( cn ) && !el.tabPane )
			new WebFXTabPane( el );
	
		// unitiated tab page wit a valid tab pane parent
		else if ( tabPageRe.test( cn ) && !el.tabPage &&
					tabPaneRe.test( el.parentNode.className ) ) {
			el.parentNode.tabPane.addTabPage( el );			
		}
	}
}

function disposeAllTabs() {
	if ( !hasSupport() ) return;
	
	var all = document.getElementsByTagName( "*" );
	var l = all.length;
	var tabPaneRe = /tab\-pane/;
	var cn, el;
	var tabPanes = [];
	
	for ( var i = 0; i < l; i++ ) {
		el = all[i]
		cn = el.className;

		// no className
		if ( cn == "" ) continue;
		
		// tab pane
		if ( tabPaneRe.test( cn ) && el.tabPane )
			tabPanes[tabPanes.length] = el.tabPane;
	}
	
	for (var i = tabPanes.length - 1; i >= 0; i--) {
		tabPanes[i].dispose();
		tabPanes[i] = null;
	}
}


// initialization hook up

// DOM2
if ( typeof window.addEventListener != "undefined" )
	window.addEventListener( "load", setupAllTabs, false );

// IE 
else if ( typeof window.attachEvent != "undefined" ) {
	window.attachEvent( "onload", setupAllTabs );
	window.attachEvent( "onunload", disposeAllTabs );
}

else {
	if ( window.onload != null ) {
		var oldOnload = window.onload;
		window.onload = function ( e ) {
			oldOnload( e );
			setupAllTabs();
		};
	}
	else 
		window.onload = setupAllTabs;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品美女视频| 色婷婷av一区二区三区软件 | 国产成人精品三级| 色婷婷精品久久二区二区蜜臀av| 青青草成人在线观看| 粉嫩aⅴ一区二区三区四区 | 欧美一区二区三区人| 中文字幕av免费专区久久| 琪琪一区二区三区| 欧美三级中文字幕| 亚洲美女在线一区| 成人app网站| 国产亚洲欧美中文| 狠狠色综合播放一区二区| 欧美日韩成人综合在线一区二区 | 国产精品影视在线| 91精品国产色综合久久不卡电影| 欧美艳星brazzers| 亚洲高清久久久| 成人国产精品免费观看视频| 欧美大白屁股肥臀xxxxxx| 午夜视频一区二区三区| 91看片淫黄大片一级在线观看| eeuss鲁一区二区三区| 日韩视频在线你懂得| 亚洲成a人v欧美综合天堂下载| 婷婷国产在线综合| 欧美色网一区二区| 午夜精品一区二区三区免费视频 | 欧美国产日韩在线观看| 国产精品小仙女| 日韩一区二区精品| 天堂一区二区在线免费观看| 欧美日韩aaa| 免费的成人av| 日韩欧美国产麻豆| 国产在线播精品第三| 久久久久99精品一区| 国产91精品免费| 日韩毛片在线免费观看| 色婷婷综合久色| 亚洲福利电影网| 欧美二区在线观看| 狠狠色狠狠色综合系列| 欧美国产禁国产网站cc| 不卡一区中文字幕| 亚洲精品你懂的| 欧美日本精品一区二区三区| 青青草97国产精品免费观看| 久久综合成人精品亚洲另类欧美| 一区二区三区日韩欧美精品| 欧美亚男人的天堂| 久久99精品久久久| 国产亚洲欧美色| 一本大道久久a久久综合| 视频一区二区欧美| 久久久亚洲综合| 色综合天天综合色综合av| 一区二区三区 在线观看视频| 狠狠色狠狠色综合系列| 国产精品久99| 91精品国产综合久久香蕉麻豆| 国产午夜亚洲精品理论片色戒| 午夜影院在线观看欧美| 久久综合国产精品| 在线免费观看一区| 国产乱子伦视频一区二区三区 | 日韩一区二区三区在线观看| 日韩高清不卡一区二区| 国产亚洲一区字幕| 欧美色网站导航| 国产成人在线网站| 视频一区视频二区在线观看| 久久久久久黄色| 欧美日韩国产精选| 成人av一区二区三区| 人人精品人人爱| 亚洲在线视频免费观看| 久久欧美中文字幕| 欧美一区二区在线不卡| 波多野结衣在线一区| 免费观看成人鲁鲁鲁鲁鲁视频| 在线亚洲人成电影网站色www| 久久精品欧美一区二区三区不卡| 日本成人中文字幕| 亚洲国产高清在线观看视频| 在线成人av网站| 91视频com| 国产99久久久精品| 国产一区在线视频| 麻豆精品视频在线观看视频| 亚洲视频每日更新| 中文字幕国产精品一区二区| 欧美www视频| 91精品国产综合久久久久久| 色综合久久66| 99精品久久久久久| 欧美一级欧美三级| 在线观看av不卡| 97久久精品人人爽人人爽蜜臀| 国产精品女上位| 久久精品男人的天堂| 日韩精品综合一本久道在线视频| 九一久久久久久| 日韩精品一二三四| 三级不卡在线观看| 亚洲国产美国国产综合一区二区 | 国产一区二区三区精品欧美日韩一区二区三区 | 国产精品理伦片| 欧美xxxxxxxx| 精品久久久久久久久久久久包黑料| 国产麻豆精品久久一二三| 久久福利视频一区二区| 日本va欧美va精品发布| 五月综合激情网| 日本不卡1234视频| 久久99国产精品免费网站| 精品夜夜嗨av一区二区三区| 国产乱子轮精品视频| 美国十次了思思久久精品导航| 久久久久综合网| 国产精品嫩草99a| 亚洲国产精品激情在线观看| 中文字幕不卡的av| 亚洲欧洲日韩综合一区二区| 亚洲欧美日韩国产中文在线| 亚洲精品你懂的| 亚洲va欧美va人人爽午夜| 爽爽淫人综合网网站| 美女免费视频一区二区| 国产在线麻豆精品观看| 成人免费看视频| 欧美这里有精品| 欧美精品日日鲁夜夜添| 精品国产一区二区三区不卡| 久久精品一区二区三区四区| 亚洲婷婷综合久久一本伊一区| 欧美一区二区三区视频免费| 久久综合九色综合97婷婷女人| 91丨porny丨蝌蚪视频| 欧美三级在线视频| 精品电影一区二区三区| 国产精品传媒在线| 天天色 色综合| 韩日精品视频一区| 99国产精品久久| 欧美一级高清片| 麻豆国产精品官网| 国产原创一区二区三区| 色综合久久久久久久久| 欧美精品丝袜久久久中文字幕| 91欧美激情一区二区三区成人| 狠狠色狠狠色综合| 一本一道综合狠狠老| 欧美成人一级视频| 亚洲欧美另类综合偷拍| 欧美a级一区二区| av影院午夜一区| 欧美一区在线视频| 亚洲视频小说图片| 激情文学综合丁香| 色狠狠色噜噜噜综合网| 久久众筹精品私拍模特| 亚洲国产日韩一级| 成人美女视频在线看| 欧美成人性福生活免费看| 一二三区精品视频| 国产成人免费在线观看不卡| 欧美日韩激情一区二区三区| 中文字幕中文在线不卡住| 久久se这里有精品| 宅男噜噜噜66一区二区66| 亚洲理论在线观看| 制服丝袜中文字幕一区| 国产精品污网站| 国产91精品精华液一区二区三区| 欧美激情艳妇裸体舞| 三级久久三级久久久| 日韩区在线观看| 亚洲一区二区三区爽爽爽爽爽| 日韩三级电影网址| 麻豆精品在线看| 欧美大片在线观看| 国产综合色视频| 国产欧美日韩卡一| 免费在线观看成人| 午夜亚洲福利老司机| 欧美日韩精品一区视频| 亚洲人一二三区| 成人动漫中文字幕| 欧美高清在线一区二区| 国产激情偷乱视频一区二区三区| 亚洲国产视频a| 91福利在线看| 亚洲精品免费看| 成人av午夜影院| 国产精品久久99| 99riav一区二区三区| 国产亲近乱来精品视频| 国产伦精一区二区三区|