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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? tabpane.js

?? OA.....其他人不需帳號就可自由下載此源碼其他人不需帳號就可自由下載此源碼
?? 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 : false;
	
	// 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;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
青青草视频一区| 亚洲乱码国产乱码精品精可以看 | 青娱乐精品视频在线| 欧美欧美午夜aⅴ在线观看| 亚洲第一福利一区| 欧美裸体bbwbbwbbw| 免费成人在线观看| 精品粉嫩aⅴ一区二区三区四区 | 亚洲美女视频在线观看| 在线观看日产精品| 免费人成精品欧美精品| 久久久久久久久免费| 国产成人精品一区二区三区网站观看| 中文av一区特黄| 在线日韩一区二区| 蜜臀久久久久久久| 国产精品久久久一本精品| 91国产精品成人| 天天综合天天综合色| 久久综合九色综合97_久久久| 国产iv一区二区三区| 亚洲综合一区在线| 精品剧情在线观看| 91论坛在线播放| 免费在线看一区| 国产精品短视频| 欧美一区二区免费| jiyouzz国产精品久久| 香蕉乱码成人久久天堂爱免费| 精品福利在线导航| 91国产免费看| 国产精品99久久久久久宅男| 亚洲午夜电影在线观看| 久久人人97超碰com| 在线观看一区二区视频| 国产一区二区免费在线| 亚洲永久免费av| 国产日产亚洲精品系列| 欧美日韩国产另类一区| 不卡在线视频中文字幕| 婷婷激情综合网| 国产精品久久久久久久久免费相片 | 制服丝袜一区二区三区| yourporn久久国产精品| 久久国产精品99久久久久久老狼 | 亚洲精品伦理在线| 久久精品欧美一区二区三区麻豆| 欧美日韩国产天堂| 一本色道久久综合亚洲aⅴ蜜桃| 极品美女销魂一区二区三区| 亚洲成人你懂的| 老司机精品视频导航| 一区二区三区在线播放| 中文无字幕一区二区三区| 日韩一区二区麻豆国产| 欧美三级日本三级少妇99| 97aⅴ精品视频一二三区| 国产精品一区在线| 精品一区二区av| 免费高清不卡av| 婷婷中文字幕综合| 亚洲国产一区二区视频| 亚洲天堂av一区| 中日韩av电影| 国产日韩欧美电影| 精品久久人人做人人爽| 欧美一级片免费看| 欧美二区在线观看| 欧美二区三区的天堂| 91精选在线观看| 欧美精品一级二级| 制服丝袜av成人在线看| 欧美日韩不卡视频| 在线播放/欧美激情| 欧美日韩国产高清一区二区| 在线观看免费视频综合| 欧美在线观看一二区| 91成人免费网站| 欧美自拍丝袜亚洲| 欧美性色黄大片| 欧美视频一区二区| 欧美日韩精品一区二区天天拍小说| 在线精品视频一区二区三四| 欧美在线一区二区| 欧美日韩国产一区二区三区地区| 欧美日韩另类一区| 欧美一级片在线观看| 精品国产乱码久久久久久夜甘婷婷| 日韩视频免费直播| 久久久久九九视频| 国产精品初高中害羞小美女文| 国产精品久久影院| 亚洲一线二线三线久久久| 婷婷开心激情综合| 韩日欧美一区二区三区| 国产乱国产乱300精品| www.欧美色图| 欧美色精品在线视频| 日韩三级视频在线观看| 国产欧美一区二区三区沐欲| 国产精品久久夜| 午夜精品影院在线观看| 久色婷婷小香蕉久久| 国产福利视频一区二区三区| 91啪在线观看| 91精品久久久久久久91蜜桃| 久久一区二区三区四区| 中文字幕永久在线不卡| 亚洲成年人网站在线观看| 精品一区二区国语对白| 91影院在线免费观看| 欧美一级日韩免费不卡| 国产女人18毛片水真多成人如厕| 亚洲丝袜美腿综合| 欧美aa在线视频| 精品理论电影在线观看 | 日韩精品成人一区二区三区| 久久99国产乱子伦精品免费| 91麻豆高清视频| 91精品国产丝袜白色高跟鞋| 欧美高清在线一区| 午夜私人影院久久久久| 福利一区福利二区| 制服丝袜国产精品| 亚洲天天做日日做天天谢日日欢| 偷拍亚洲欧洲综合| 成人高清免费观看| 欧美变态tickle挠乳网站| 亚洲欧美一区二区三区国产精品| 美女爽到高潮91| 色婷婷激情综合| 久久综合久久综合九色| 五月天欧美精品| 99精品欧美一区二区三区小说| 欧美一级一级性生活免费录像| 亚洲天堂2014| 国产九色精品成人porny| 欧美日韩激情一区二区| 亚洲精品中文字幕在线观看| 国产成人精品影视| 精品国产成人在线影院 | 99视频在线观看一区三区| 日韩一区和二区| 亚洲一区二区三区精品在线| yourporn久久国产精品| 久久麻豆一区二区| 蜜臀av性久久久久蜜臀aⅴ| 欧美视频自拍偷拍| 亚洲乱码精品一二三四区日韩在线| 91精品啪在线观看国产60岁| 亚洲视频每日更新| 成年人国产精品| 国产网站一区二区| 精品亚洲国内自在自线福利| 正在播放一区二区| 亚洲图片欧美色图| 欧美性猛交一区二区三区精品| 中文字幕一区二区三区不卡在线| 国产很黄免费观看久久| 精品国产乱码久久久久久蜜臀| 日韩精品欧美精品| 欧美久久一二三四区| 亚洲成a人片综合在线| 欧美日韩亚洲综合一区二区三区| 亚洲精品中文在线影院| 色婷婷久久久久swag精品| 亚洲伦在线观看| 欧美在线观看一区二区| 午夜视黄欧洲亚洲| 91精品国产aⅴ一区二区| 日韩经典一区二区| 欧美一区二区黄| 男人操女人的视频在线观看欧美| 欧美一区二区高清| 加勒比av一区二区| 国产片一区二区| 99精品一区二区三区| 亚洲精选视频免费看| 欧美日韩综合不卡| 日韩国产一二三区| 精品国产乱码久久久久久蜜臀| 韩国成人福利片在线播放| 国产日韩精品一区二区三区在线| 波多野结衣中文字幕一区二区三区 | 亚洲一区二区三区四区不卡| 欧美丰满嫩嫩电影| 精品一区二区三区免费视频| 26uuu欧美| 99久久精品国产毛片| 亚洲国产视频一区| 精品久久国产老人久久综合| 国产91精品一区二区麻豆网站 | 亚洲欧美日韩久久精品| 欧美亚洲综合网| 蜜臀精品久久久久久蜜臀 | 亚洲欧美日韩国产一区二区三区 | 国产91精品免费| 一区二区三区四区在线播放 | 在线亚洲欧美专区二区| 久久精品二区亚洲w码|