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

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

?? tabpane.js

?? 設備管理系統(SQL正式版)
?? JS
字號:
/*----------------------------------------------------------------------------\
|                               Tab Pane 1.02                                 |
|-----------------------------------------------------------------------------|
|                         Created by Erik Arvidsson                           |
|                  (http://webfx.eae.net/contact.html#erik)                   |
|                      For WebFX (http://webfx.eae.net/)                      |
|-----------------------------------------------------------------------------|
|                  Copyright (c) 1998 - 2003 Erik Arvidsson                   |
|-----------------------------------------------------------------------------|
| This software is provided "as is", without warranty of any kind, express or |
| implied, including  but not limited  to the warranties of  merchantability, |
| fitness for a particular purpose and noninfringement. In no event shall the |
| authors or  copyright  holders be  liable for any claim,  damages or  other |
| liability, whether  in an  action of  contract, tort  or otherwise, arising |
| from,  out of  or in  connection with  the software or  the  use  or  other |
| dealings in the software.                                                   |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| This  software is  available under the  three different licenses  mentioned |
| below.  To use this software you must chose, and qualify, for one of those. |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| The WebFX Non-Commercial License          http://webfx.eae.net/license.html |
| Permits  anyone the right to use the  software in a  non-commercial context |
| free of charge.                                                             |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| The WebFX Commercial license           http://webfx.eae.net/commercial.html |
| Permits the  license holder the right to use  the software in a  commercial |
| context. Such license must be specifically obtained, however it's valid for |
| any number of  implementations of the licensed software.                    |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| GPL - The GNU General Public License    http://www.gnu.org/licenses/gpl.txt |
| Permits anyone the right to use and modify the software without limitations |
| as long as proper  credits are given  and the original  and modified source |
| code are included. Requires  that the final product, software derivate from |
| the original  source or any  software  utilizing a GPL  component, such  as |
| this, is also licensed under the GPL 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                     |
|-----------------------------------------------------------------------------|| Dependencies: *.css           a css file to define the layout               ||-----------------------------------------------------------------------------|
| Created 2002-01-?? | All changes are in the log above. | Updated 2003-03-03 |
\----------------------------------------------------------------------------*/

// 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一区二区三区免费野_久草精品视频
国产一区二区在线视频| 久久国产精品99精品国产| 欧美剧情片在线观看| 不卡的电影网站| 丁香啪啪综合成人亚洲小说 | 青娱乐精品视频在线| 亚洲黄色录像片| 综合激情成人伊人| 亚洲国产电影在线观看| 欧美伊人久久久久久午夜久久久久| 精品国产乱码久久久久久闺蜜| 一区二区三区在线免费| 亚洲精品中文在线观看| 亚洲激情图片一区| 亚洲一二三四久久| 五月天一区二区| 奇米综合一区二区三区精品视频| 成人看片黄a免费看在线| 丁香六月综合激情| www..com久久爱| 91视频免费播放| 欧美性受xxxx黑人xyx| 欧美男生操女生| 欧美成人aa大片| 国产色产综合产在线视频| 中文字幕精品三区| 一区二区三区日韩欧美精品| 成人美女视频在线看| 色婷婷国产精品| 911精品国产一区二区在线| 日韩一区二区三| 久久久无码精品亚洲日韩按摩| 麻豆精品一区二区三区| 国产一区二区主播在线| 成人高清在线视频| 高清在线观看日韩| 91福利视频网站| 欧美成人一区二区| 中文字幕欧美日韩一区| 亚洲黄色性网站| 精品中文字幕一区二区小辣椒| 日韩免费在线观看| 中文字幕一区三区| 亚洲永久精品国产| 亚洲午夜精品一区二区三区他趣| 欧洲日韩一区二区三区| 精品99一区二区三区| 亚洲视频免费在线| 老司机精品视频线观看86| 99久久久久免费精品国产| 欧美丝袜自拍制服另类| 久久久综合网站| 亚洲一区二区黄色| 成人免费看片app下载| 欧美丰满少妇xxxbbb| 欧美韩国日本综合| 青青草一区二区三区| 91片黄在线观看| 久久婷婷色综合| 日本美女一区二区| 色婷婷亚洲精品| 国产精品天干天干在观线 | 久久综合国产精品| 亚洲午夜免费电影| 成人h版在线观看| 精品sm捆绑视频| 日本在线播放一区二区三区| 久久综合视频网| 免费观看一级欧美片| 一本在线高清不卡dvd| 欧美日韩高清一区二区三区| 精品亚洲成a人在线观看| 欧美色图12p| 亚洲日本在线观看| 丁香婷婷综合激情五月色| 91精品国产高清一区二区三区蜜臀 | 美女视频黄免费的久久 | 成人手机电影网| 久久久久国产免费免费| 麻豆极品一区二区三区| 欧美撒尿777hd撒尿| 亚洲最色的网站| 色综合一区二区| 中文字幕视频一区二区三区久| 欧美精品一级二级三级| 综合中文字幕亚洲| 99久久综合国产精品| 国产日韩av一区| 国产不卡在线播放| 国产精品私房写真福利视频| 91精品国产综合久久福利软件 | 久久国产三级精品| 欧美日本韩国一区二区三区视频| 丁香天五香天堂综合| 国产精品美女久久久久久久久 | 在线精品视频免费观看| 一区二区三区四区五区视频在线观看 | 日韩免费高清电影| 国产精品白丝jk黑袜喷水| 久久综合久久综合九色| 国产一区二区三区av电影| 久久久久国产成人精品亚洲午夜| 7878成人国产在线观看| 人人爽香蕉精品| 久久综合九色综合欧美亚洲| 欧美一区二区二区| 国精产品一区一区三区mba桃花| 日韩精品福利网| 久久久久九九视频| 99精品视频一区二区| 亚洲国产综合91精品麻豆| 91精品国产综合久久精品图片| 在线亚洲精品福利网址导航| 激情五月播播久久久精品| 国产欧美日产一区| 日本精品一区二区三区高清 | 激情久久五月天| 国产亚洲精品bt天堂精选| 青青草原综合久久大伊人精品| 婷婷国产在线综合| 久久一区二区三区四区| 91色视频在线| 蜜桃视频在线一区| 日本一区二区三区高清不卡| 国产欧美va欧美不卡在线| 91久久国产最好的精华液| 蜜臂av日日欢夜夜爽一区| 国产欧美一区二区在线| 欧美系列在线观看| 国产精品69久久久久水密桃| 国产a区久久久| 日韩电影免费一区| 综合激情成人伊人| 精品久久久久一区| 欧美综合在线视频| 国产在线视频一区二区三区| 国产不卡视频在线播放| 午夜私人影院久久久久| 国产精品电影院| 欧美一区二区精品久久911| 99免费精品在线| 国产一区视频网站| 香蕉久久夜色精品国产使用方法| 日本美女一区二区| 亚洲日本在线a| 久久久美女毛片| 欧美一级久久久久久久大片| 久久精品男人天堂av| 在线播放中文字幕一区| 一本色道亚洲精品aⅴ| 国产精品18久久久久| 视频一区二区中文字幕| 国产精品久久毛片a| 欧美日韩一区久久| 99精品视频在线免费观看| 国产精品888| 精品一区二区日韩| 亚洲动漫第一页| 亚洲品质自拍视频| 中文欧美字幕免费| 久久色成人在线| 日韩精品一区二区三区老鸭窝| 日韩精品中午字幕| 欧美一区二区三区在线电影 | 亚洲精品一区二区在线观看| 亚洲女人小视频在线观看| 中文一区一区三区高中清不卡| 亚洲综合自拍偷拍| 一区二区三区日韩欧美| 亚洲美女一区二区三区| 亚洲天堂av一区| 亚洲免费av高清| 一区二区三区中文字幕精品精品| 国产一区二区三区免费看| 麻豆精品一区二区综合av| 青青草精品视频| 久久不见久久见免费视频7| 老司机精品视频导航| 久久福利视频一区二区| 狠狠色丁香九九婷婷综合五月| 欧美性大战xxxxx久久久| 欧美日韩aaaaaa| 欧美日韩国产影片| 91精品国产一区二区人妖| 日韩一区二区三区视频在线| 亚洲午夜免费电影| 欧美bbbbb| 国产精品18久久久久久vr| 国产精品99久久久久| 精品一区二区三区欧美| 国产成人午夜电影网| 成人美女视频在线观看18| 91美女片黄在线观看| 欧美亚洲国产怡红院影院| 制服丝袜国产精品| 国产亚洲欧美在线| 一区二区三区四区中文字幕| 91小视频在线免费看| 7878成人国产在线观看| 久久亚洲一区二区三区明星换脸|