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

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

?? tabpane.js

?? 商城改進板全站代碼
?? 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一区二区三区免费野_久草精品视频
欧美成人官网二区| 午夜精品爽啪视频| 手机精品视频在线观看| 国产精品1区二区.| 欧美日本国产视频| 亚洲欧美经典视频| 丁香桃色午夜亚洲一区二区三区 | 亚洲国产精品一区二区久久| 国内外成人在线| 91精品国产综合久久久蜜臀粉嫩 | 国产精品福利av| 久久国产人妖系列| 欧美裸体bbwbbwbbw| 一区二区不卡在线播放 | 亚洲人成网站色在线观看| 国产资源精品在线观看| 欧美一区永久视频免费观看| 亚洲一二三级电影| 日本久久一区二区三区| 椎名由奈av一区二区三区| 成人黄页在线观看| 亚洲国产高清aⅴ视频| 国产乱码字幕精品高清av | 国产精品综合视频| 久久一区二区视频| 国产一区视频导航| 久久一留热品黄| 国产91清纯白嫩初高中在线观看| 欧美xxxx在线观看| 国产一区二区三区免费| 久久嫩草精品久久久精品一| 国产精品影音先锋| 国产肉丝袜一区二区| 国产成人自拍网| 国产精品免费久久久久| 99国产欧美久久久精品| 一区二区三区在线视频观看| 91国偷自产一区二区使用方法| 依依成人综合视频| 欧美三级韩国三级日本三斤| 亚洲va韩国va欧美va| 欧美人牲a欧美精品| 老司机精品视频在线| 久久无码av三级| 成人精品国产福利| 一级特黄大欧美久久久| 欧美福利一区二区| 久久99国内精品| 欧美激情一区二区三区| 91色婷婷久久久久合中文| 亚洲国产精品久久不卡毛片| 日韩一区二区免费电影| 国产精品1024久久| 成人欧美一区二区三区1314| 欧美性视频一区二区三区| 日本欧美久久久久免费播放网| 精品国产99国产精品| 国产成人在线免费观看| 亚洲在线中文字幕| 日韩精品自拍偷拍| av动漫一区二区| 日本欧美一区二区| 国产精品久久毛片av大全日韩| 欧美色大人视频| 国产不卡视频在线观看| 一二三区精品视频| 精品欧美黑人一区二区三区| 99精品欧美一区二区三区小说 | 国产女主播一区| 91久久免费观看| 久久精品国产精品亚洲红杏| 中文字幕亚洲一区二区av在线| 欧美日韩你懂得| 成人综合婷婷国产精品久久蜜臀 | 亚洲精品菠萝久久久久久久| 91麻豆精品国产91久久久久 | 亚洲天堂av一区| 日韩无一区二区| 色天使久久综合网天天| 国产毛片精品视频| 亚洲高清免费观看 | 国产亚洲欧美一级| 欧美三区免费完整视频在线观看| 国产露脸91国语对白| 亚洲超碰97人人做人人爱| 中文字幕二三区不卡| 91精品国产高清一区二区三区蜜臀| 成人少妇影院yyyy| 精品一区二区av| 日韩在线一区二区| 亚洲精品网站在线观看| 日本一区二区三区视频视频| 日韩欧美国产三级电影视频| 欧美日韩精品二区第二页| 99国产精品久久久久久久久久久| 久久成人羞羞网站| 免费精品视频在线| 图片区小说区区亚洲影院| 亚洲美女视频一区| 国产精品久久久久久久裸模| 久久久精品国产免费观看同学| 91精品国产入口| 欧美精选一区二区| 欧美日本在线观看| 欧美日韩一级黄| 精品视频在线免费| 欧美午夜影院一区| 欧美性色黄大片| 色噜噜夜夜夜综合网| av电影一区二区| 99久久精品免费精品国产| 成人avav影音| 99国产精品国产精品久久| 成人三级在线视频| 波多野结衣亚洲| 99久久久国产精品免费蜜臀| 北岛玲一区二区三区四区 | 国产一区在线不卡| 国产精品一区二区x88av| 国产高清在线观看免费不卡| 国产精品综合一区二区三区| 岛国一区二区在线观看| 丁香激情综合五月| 欧美精三区欧美精三区| 欧美精品一卡两卡| 欧美一区二区在线播放| 精品国产sm最大网站免费看| 国产亚洲一区二区三区四区| 国产欧美一区二区精品忘忧草| 欧美激情自拍偷拍| 亚洲女人的天堂| 日韩精品亚洲一区| 精品一区二区三区av| 成人一区二区三区中文字幕| 99视频精品全部免费在线| 91黄色免费网站| 欧美肥妇bbw| 久久久久久久久一| 1024成人网| 亚洲一区在线播放| 麻豆成人91精品二区三区| 国产传媒欧美日韩成人| 日本高清不卡在线观看| 91精品国产色综合久久不卡蜜臀| 久久精品综合网| 亚洲美女精品一区| 精品在线一区二区| 99久久精品99国产精品| 555夜色666亚洲国产免| 国产喷白浆一区二区三区| 夜夜精品浪潮av一区二区三区| 免费日本视频一区| 91天堂素人约啪| 在线观看91av| 亚洲欧洲成人精品av97| 日本中文字幕一区二区视频| 成人动漫中文字幕| 91精品国产综合久久久久久漫画 | 偷拍一区二区三区| 国产成人免费高清| 欧美日韩国产三级| 国产精品你懂的在线欣赏| 婷婷久久综合九色国产成人 | 亚洲永久免费av| 国产精品一区专区| 欧美人体做爰大胆视频| 国产精品久久一卡二卡| 麻豆精品精品国产自在97香蕉| 成人禁用看黄a在线| 日韩一级免费一区| 亚洲精品美国一| 粉嫩aⅴ一区二区三区四区 | 国产精品白丝av| 69p69国产精品| 亚洲一区在线观看免费观看电影高清| 国产成人午夜精品影院观看视频| 欧美喷潮久久久xxxxx| 亚洲靠逼com| 成人手机在线视频| 久久久久国产精品麻豆ai换脸| 婷婷国产v国产偷v亚洲高清| 91视频国产资源| 日日骚欧美日韩| 欧美视频在线一区二区三区| 国产精品国产自产拍高清av| 久久99国内精品| 欧美成人猛片aaaaaaa| 日韩和欧美的一区| 欧美剧情片在线观看| 亚洲韩国精品一区| 91精品福利视频| 亚洲男同性视频| 一本一道波多野结衣一区二区| 中文字幕精品在线不卡| 国产精品一二二区| 26uuu亚洲| 粉嫩绯色av一区二区在线观看| 久久久久国产精品厨房| 国产成人亚洲精品狼色在线| 久久精品一区八戒影视|