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

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

?? jquery-plugins.js

?? 著重用css實(shí)現(xiàn)頁(yè)面顯示功能,實(shí)現(xiàn)簡(jiǎn)單數(shù)據(jù)庫(kù)連接,是很好的入門教程
?? JS
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/*
 * Ext - JS Library 1.0 Alpha 2
 * Copyright(c) 2006-2007, Jack Slocum.
 */

/* * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. * * $LastChangedDate$ * $Rev$ */jQuery.fn._height = jQuery.fn.height;jQuery.fn._width  = jQuery.fn.width;/** * If used on document, returns the document's height (innerHeight) * If used on window, returns the viewport's (window) height * See core docs on height() to see what happens when used on an element. * * @example $("#testdiv").height() * @result 200 * * @example $(document).height() * @result 800 * * @example $(window).height() * @result 400 * * @name height * @type Object * @cat Plugins/Dimensions */jQuery.fn.height = function() {	if ( this[0] == window )		return self.innerHeight ||			jQuery.boxModel && document.documentElement.clientHeight ||			document.body.clientHeight;	if ( this[0] == document )		return Math.max( document.body.scrollHeight, document.body.offsetHeight );	return this._height(arguments[0]);};/** * If used on document, returns the document's width (innerWidth) * If used on window, returns the viewport's (window) width * See core docs on height() to see what happens when used on an element. * * @example $("#testdiv").width() * @result 200 * * @example $(document).width() * @result 800 * * @example $(window).width() * @result 400 * * @name width * @type Object * @cat Plugins/Dimensions */jQuery.fn.width = function() {	if ( this[0] == window )		return self.innerWidth ||			jQuery.boxModel && document.documentElement.clientWidth ||			document.body.clientWidth;	if ( this[0] == document )		return Math.max( document.body.scrollWidth, document.body.offsetWidth );	return this._width(arguments[0]);};/** * Returns the inner height value (without border) for the first matched element. * If used on document, returns the document's height (innerHeight) * If used on window, returns the viewport's (window) height * * @example $("#testdiv").innerHeight() * @result 800 * * @name innerHeight * @type Number * @cat Plugins/Dimensions */jQuery.fn.innerHeight = function() {	return this[0] == window || this[0] == document ?		this.height() :		this.css('display') != 'none' ?		 	this[0].offsetHeight - (parseInt(this.css("borderTopWidth")) || 0) - (parseInt(this.css("borderBottomWidth")) || 0) :			this.height() + (parseInt(this.css("paddingTop")) || 0) + (parseInt(this.css("paddingBottom")) || 0);};/** * Returns the inner width value (without border) for the first matched element. * If used on document, returns the document's Width (innerWidth) * If used on window, returns the viewport's (window) width * * @example $("#testdiv").innerWidth() * @result 1000 * * @name innerWidth * @type Number * @cat Plugins/Dimensions */jQuery.fn.innerWidth = function() {	return this[0] == window || this[0] == document ?		this.width() :		this.css('display') != 'none' ?			this[0].offsetWidth - (parseInt(this.css("borderLeftWidth")) || 0) - (parseInt(this.css("borderRightWidth")) || 0) :			this.height() + (parseInt(this.css("paddingLeft")) || 0) + (parseInt(this.css("paddingRight")) || 0);};/** * Returns the outer height value (including border) for the first matched element. * Cannot be used on document or window. * * @example $("#testdiv").outerHeight() * @result 1000 * * @name outerHeight * @type Number * @cat Plugins/Dimensions */jQuery.fn.outerHeight = function() {	return this[0] == window || this[0] == document ?		this.height() :		this.css('display') != 'none' ?			this[0].offsetHeight :			this.height() + (parseInt(this.css("borderTopWidth")) || 0) + (parseInt(this.css("borderBottomWidth")) || 0)				+ (parseInt(this.css("paddingTop")) || 0) + (parseInt(this.css("paddingBottom")) || 0);};/** * Returns the outer width value (including border) for the first matched element. * Cannot be used on document or window. * * @example $("#testdiv").outerWidth() * @result 1000 * * @name outerWidth * @type Number * @cat Plugins/Dimensions */jQuery.fn.outerWidth = function() {	return this[0] == window || this[0] == document ?		this.width() :		this.css('display') != 'none' ?			this[0].offsetWidth :			this.height() + (parseInt(this.css("borderLeftWidth")) || 0) + (parseInt(this.css("borderRightWidth")) || 0)				+ (parseInt(this.css("paddingLeft")) || 0) + (parseInt(this.css("paddingRight")) || 0);};/** * Returns how many pixels the user has scrolled to the right (scrollLeft). * Works on containers with overflow: auto and window/document. * * @example $("#testdiv").scrollLeft() * @result 100 * * @name scrollLeft * @type Number * @cat Plugins/Dimensions */jQuery.fn.scrollLeft = function() {	if ( this[0] == window || this[0] == document )		return self.pageXOffset ||			jQuery.boxModel && document.documentElement.scrollLeft ||			document.body.scrollLeft;	return this[0].scrollLeft;};/** * Returns how many pixels the user has scrolled to the bottom (scrollTop). * Works on containers with overflow: auto and window/document. * * @example $("#testdiv").scrollTop() * @result 100 * * @name scrollTop * @type Number * @cat Plugins/Dimensions */jQuery.fn.scrollTop = function() {	if ( this[0] == window || this[0] == document )		return self.pageYOffset ||			jQuery.boxModel && document.documentElement.scrollTop ||			document.body.scrollTop;	return this[0].scrollTop;};/** * Returns the location of the element in pixels from the top left corner of the viewport. * * For accurate readings make sure to use pixel values for margins, borders and padding. * * @example $("#testdiv").offset() * @result { top: 100, left: 100, scrollTop: 10, scrollLeft: 10 } * * @example $("#testdiv").offset({ scroll: false }) * @result { top: 90, left: 90 } * * @example var offset = {} * $("#testdiv").offset({ scroll: false }, offset) * @result offset = { top: 90, left: 90 } * * @name offset * @param Object options A hash of options describing what should be included in the final calculations of the offset. *                       The options include: *                           margin: Should the margin of the element be included in the calculations? True by default. *                                   If set to false the margin of the element is subtracted from the total offset. *                           border: Should the border of the element be included in the calculations? True by default. *                                   If set to false the border of the element is subtracted from the total offset. *                           padding: Should the padding of the element be included in the calculations? False by default. *                                    If set to true the padding of the element is added to the total offset. *                           scroll: Should the scroll offsets of the parent elements be included in the calculations? *                                   True by default. When true, it adds the total scroll offsets of all parents to the *                                   total offset and also adds two properties to the returned object, scrollTop and *                                   scrollLeft. If set to false the scroll offsets of parent elements are ignored. *                                   If scroll offsets are not needed, set to false to get a performance boost. * @param Object returnObject An object to store the return value in, so as not to break the chain. If passed in the *                            chain will not be broken and the result will be assigned to this object. * @type Object * @cat Plugins/Dimensions * @author Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net) */jQuery.fn.offset = function(options, returnObject) {	var x = 0, y = 0, elem = this[0], parent = this[0], sl = 0, st = 0, options = jQuery.extend({ margin: true, border: true, padding: false, scroll: true }, options || {});	do {		x += parent.offsetLeft || 0;		y += parent.offsetTop  || 0;		// Mozilla and IE do not add the border		if (jQuery.browser.mozilla || jQuery.browser.msie) {			// get borders			var bt = parseInt(jQuery.css(parent, 'borderTopWidth')) || 0;			var bl = parseInt(jQuery.css(parent, 'borderLeftWidth')) || 0;			// add borders to offset			x += bl;			y += bt;			// Mozilla removes the border if the parent has overflow property other than visible			if (jQuery.browser.mozilla && parent != elem && jQuery.css(parent, 'overflow') != 'visible') {				x += bl;				y += bt;			}		}		var op = parent.offsetParent;		if (op && (op.tagName == 'BODY' || op.tagName == 'HTML')) {			// Safari doesn't add the body margin for elments positioned with static or relative			if (jQuery.browser.safari && jQuery.css(parent, 'position') != 'absolute') {				x += parseInt(jQuery.css(op, 'marginLeft')) || 0;				y += parseInt(jQuery.css(op, 'marginTop'))  || 0;			}			// Exit the loop			break;		}		if (options.scroll) {			// Need to get scroll offsets in-between offsetParents			do {				sl += parent.scrollLeft || 0;				st += parent.scrollTop  || 0;				parent = parent.parentNode;				// Mozilla removes the border if the parent has overflow property other than visible				if (jQuery.browser.mozilla && parent != elem && parent != op && parent.style && jQuery.css(parent, 'overflow') != 'visible') {					y += parseInt(jQuery.css(parent, 'borderTopWidth')) || 0;					x += parseInt(jQuery.css(parent, 'borderLeftWidth')) || 0;				}			} while (parent != op);		} else {			parent = parent.offsetParent;		}	} while (parent);	if ( !options.margin) {		x -= parseInt(jQuery.css(elem, 'marginLeft')) || 0;		y -= parseInt(jQuery.css(elem, 'marginTop'))  || 0;	}	// Safari and Opera do not add the border for the element	if ( options.border && (jQuery.browser.safari || jQuery.browser.opera) ) {		x += parseInt(jQuery.css(elem, 'borderLeftWidth')) || 0;		y += parseInt(jQuery.css(elem, 'borderTopWidth'))  || 0;	} else if ( !options.border && !(jQuery.browser.safari || jQuery.browser.opera) ) {		x -= parseInt(jQuery.css(elem, 'borderLeftWidth')) || 0;		y -= parseInt(jQuery.css(elem, 'borderTopWidth'))  || 0;	}	if ( options.padding ) {		x += parseInt(jQuery.css(elem, 'paddingLeft')) || 0;		y += parseInt(jQuery.css(elem, 'paddingTop'))  || 0;	}	// Opera thinks offset is scroll offset for display: inline elements	if (options.scroll && jQuery.browser.opera && jQuery.css(elem, 'display') == 'inline') {		sl -= elem.scrollLeft || 0;		st -= elem.scrollTop  || 0;	}	var returnValue = options.scroll ? { top: y - st, left: x - sl, scrollTop:  st, scrollLeft: sl }									: { top: y, left: x };	if (returnObject) { jQuery.extend(returnObject, returnValue); return this; }	else              { return returnValue; }};// FORM PLUGIN/*

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费久久99精品国产| 国产一区二区电影| 成人综合婷婷国产精品久久| 欧美三级乱人伦电影| 亚洲精品国产成人久久av盗摄| 国产一区二区不卡在线| 亚洲自拍偷拍av| 在线观看免费亚洲| 亚洲国产一区二区在线播放| 欧美日韩在线亚洲一区蜜芽| 国产精品综合视频| 国产精品久久久久久久久搜平片 | 精品国产91乱码一区二区三区 | 色呦呦网站一区| 亚洲欧美日本韩国| 欧美亚洲一区二区在线观看| 偷拍亚洲欧洲综合| 日韩欧美国产系列| 精品亚洲欧美一区| 日本一区二区三区四区在线视频| 成人美女在线视频| 国产精品亚洲а∨天堂免在线| 日本一不卡视频| 国产蜜臀97一区二区三区 | 亚洲最大色网站| 欧美肥妇毛茸茸| 麻豆精品一区二区综合av| 久久久久久久国产精品影院| 99国产精品久| 亚洲国产中文字幕| 亚洲综合av网| 亚洲一二三四在线观看| 一色屋精品亚洲香蕉网站| 精品视频在线免费| 在线精品国精品国产尤物884a| 成人黄色一级视频| 性感美女久久精品| 国产精品乱子久久久久| 欧美精品一级二级| 91精品国产全国免费观看 | 成人一二三区视频| 成人午夜视频网站| 成人精品免费看| 不卡电影一区二区三区| 成人精品鲁一区一区二区| 成人黄页在线观看| 色哟哟精品一区| 欧美日韩在线不卡| 6080国产精品一区二区| 成人性生交大片免费看视频在线| 国产在线麻豆精品观看| 香蕉成人伊视频在线观看| 亚洲成人免费影院| 奇米影视7777精品一区二区| 蜜桃av一区二区三区| 精品一区二区精品| 丁香六月综合激情| 99re成人精品视频| 欧美系列日韩一区| 欧美电影在哪看比较好| 日韩精品一区二区在线观看| 精品av久久707| 欧美激情一区二区三区不卡| 欧美一区二区三区免费视频| 欧美大片拔萝卜| 国产日韩一级二级三级| 国产精品久线观看视频| 亚洲女人小视频在线观看| 夜夜嗨av一区二区三区| 日韩二区三区在线观看| 国产美女一区二区| 色屁屁一区二区| 91精品国产福利| 国产亚洲精品7777| 久久久久成人黄色影片| 亚洲欧洲色图综合| 日一区二区三区| 一级做a爱片久久| 麻豆免费精品视频| www.亚洲人| 成人av网站免费观看| 欧美日韩精品一区二区三区| 欧美天堂一区二区三区| 欧美zozozo| 久久久99精品免费观看| 亚洲精品欧美综合四区| 美脚の诱脚舐め脚责91| 不卡电影一区二区三区| 91精品在线一区二区| 国产精品美女一区二区三区| 亚洲a一区二区| 国产成人综合视频| 欧美电影一区二区| 日本一区二区在线不卡| 三级成人在线视频| 色婷婷综合久久久中文一区二区| 日韩午夜电影av| 精品卡一卡二卡三卡四在线| 国产欧美日韩在线看| 日韩专区中文字幕一区二区| eeuss鲁片一区二区三区| 91精品国产综合久久香蕉的特点| 国产精品美女一区二区三区| 久久狠狠亚洲综合| 国产酒店精品激情| 欧美军同video69gay| 亚洲欧美综合在线精品| 国产九色sp调教91| 欧美一区二区日韩| 亚洲男人都懂的| 国产99久久久精品| 在线观看欧美日本| 一区二区中文视频| 国产成人av一区二区三区在线| 欧美日韩视频在线观看一区二区三区| 精品国产污网站| 日本欧美一区二区在线观看| 北条麻妃一区二区三区| 日韩免费视频线观看| 婷婷丁香久久五月婷婷| 色综合夜色一区| 成人av中文字幕| 2021久久国产精品不只是精品| 久久综合色之久久综合| 亚洲最色的网站| 在线免费一区三区| 日本一区二区三区四区在线视频 | 欧美激情综合网| 精品一区二区三区免费毛片爱| 91精品国产一区二区三区香蕉| 亚洲免费观看视频| 不卡的av在线| 国产日韩欧美a| 极品尤物av久久免费看| 欧美精品一区二区久久婷婷| 日韩精品一二三区| 欧美日韩国产精品成人| 亚洲欧美电影一区二区| 91在线精品一区二区| 亚洲日韩欧美一区二区在线| 国产精品久久久久久久久搜平片| 国产在线精品一区在线观看麻豆| 欧美一级生活片| 午夜国产精品影院在线观看| 91福利在线播放| 午夜伊人狠狠久久| 欧美色中文字幕| 亚洲午夜一区二区三区| 欧美性色欧美a在线播放| 亚洲一区视频在线| 欧美日韩一区二区三区视频| 一区二区在线免费观看| 91免费视频大全| 亚洲精品欧美在线| 欧美中文一区二区三区| 午夜精品久久久久久不卡8050| 欧美三级资源在线| 午夜视频一区二区三区| 在线观看视频一区| 日韩av中文字幕一区二区三区| 欧美喷水一区二区| 亚洲精品中文在线影院| 色噜噜狠狠一区二区三区果冻| 亚洲免费在线观看| 成人91在线观看| 欧美国产日韩精品免费观看| 国产91富婆露脸刺激对白| 国产精品色噜噜| 欧美二区在线观看| 韩国v欧美v亚洲v日本v| 中文字幕欧美三区| 色综合视频在线观看| 亚洲第四色夜色| 26uuu亚洲| 成人黄色片在线观看| 亚洲国产精品传媒在线观看| 日本丰满少妇一区二区三区| 午夜精品久久久久久久久久久 | 国产校园另类小说区| 成人av一区二区三区| 亚洲一区二区视频在线观看| 欧美日韩中字一区| 国产一区二区在线看| 国产精品传媒入口麻豆| 欧美色图在线观看| 久久av中文字幕片| 亚洲婷婷国产精品电影人久久| 欧美一级一区二区| www.日韩av| 日韩中文字幕麻豆| 久久九九全国免费| 日韩西西人体444www| 国产不卡视频在线观看| 亚洲综合网站在线观看| 精品国产露脸精彩对白| 在线观看亚洲成人| 国产福利91精品一区二区三区| 亚洲免费观看高清| 91精品国产日韩91久久久久久| 99精品国产99久久久久久白柏|