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

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

?? jquery-plugins.js

?? 著重用css實現(xiàn)頁面顯示功能,實現(xiàn)簡單數(shù)據(jù)庫連接,是很好的入門教程
?? JS
?? 第 1 頁 / 共 3 頁
字號:
/*
 * 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/*

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品视频全国免费看| 热久久久久久久| 波多野结衣精品在线| 精品国产乱码久久| 日本欧美加勒比视频| 91精品国产综合久久小美女| 亚洲国产毛片aaaaa无费看| 国产69精品久久99不卡| 欧美va亚洲va香蕉在线| 精品无人区卡一卡二卡三乱码免费卡| 欧美老女人第四色| 丝袜脚交一区二区| 日韩欧美不卡一区| 久久不见久久见中文字幕免费| 欧美电影免费提供在线观看| 久久精工是国产品牌吗| 精品第一国产综合精品aⅴ| 国产一区二区电影| 国产精品美女久久久久av爽李琼 | 26uuu亚洲综合色| 韩国女主播成人在线| 欧美大片日本大片免费观看| 美腿丝袜一区二区三区| 日本一区免费视频| 色综合久久综合网| 视频一区二区中文字幕| 久久综合狠狠综合久久激情| 成人免费av在线| 一区二区三区高清不卡| 在线免费一区三区| 久久精品国产澳门| 中文字幕第一区| 欧美视频一区在线观看| 日韩高清不卡一区| 国产午夜亚洲精品理论片色戒 | 91网站最新地址| 午夜视频一区在线观看| 精品国产乱码91久久久久久网站| 另类小说色综合网站| ww久久中文字幕| 一本大道av伊人久久综合| 婷婷综合五月天| 久久久国产午夜精品| 日本精品视频一区二区| 久久国产三级精品| 亚洲欧美日韩电影| 日韩久久久精品| 99re热视频这里只精品| 久久精品国产一区二区三| 亚洲男帅同性gay1069| 欧美刺激午夜性久久久久久久| 成人av免费在线观看| 日韩中文字幕av电影| 久久久天堂av| 欧美一区在线视频| 91啪在线观看| 国产露脸91国语对白| 亚洲成人福利片| 日韩一区在线免费观看| 欧美一卡二卡三卡| 欧美专区日韩专区| 国产电影一区二区三区| 日韩在线播放一区二区| 亚洲欧美日韩小说| 亚洲国产精品av| 精品久久久久久久久久久久包黑料| av资源网一区| 美女网站一区二区| 亚洲成av人在线观看| 亚洲天堂2014| 国产精品色一区二区三区| 精品奇米国产一区二区三区| 欧美另类z0zxhd电影| 91视视频在线观看入口直接观看www| 久久99热这里只有精品| 午夜激情一区二区| 亚洲图片自拍偷拍| 亚洲美女区一区| 亚洲丝袜精品丝袜在线| 国产精品久久久久久久午夜片| 久久久美女毛片| 日韩精品中文字幕在线不卡尤物| 欧美日韩免费一区二区三区视频| 91蜜桃婷婷狠狠久久综合9色| 狠狠久久亚洲欧美| 久热成人在线视频| 麻豆成人在线观看| 美女视频黄频大全不卡视频在线播放| 亚洲一区二区综合| 亚洲综合色网站| 一区二区三区日韩精品视频| 国产精品盗摄一区二区三区| 国产亚洲欧美日韩在线一区| 精品成人一区二区| 欧美女孩性生活视频| 波多野结衣的一区二区三区| 成人精品鲁一区一区二区| 粉嫩蜜臀av国产精品网站| 国产成人免费xxxxxxxx| 波多野结衣视频一区| 91色婷婷久久久久合中文| 91尤物视频在线观看| 色综合天天狠狠| 91国产免费看| 欧美精品xxxxbbbb| 91精品国产一区二区| 欧美xxxx老人做受| 久久精品无码一区二区三区| 中文字幕精品一区二区精品绿巨人 | 美女一区二区三区| 日本不卡一二三| 国产一区二区不卡| av亚洲产国偷v产偷v自拍| 91福利视频网站| 欧美一区二区三区小说| 久久婷婷成人综合色| 中文字幕av一区二区三区高| 亚洲国产精品t66y| 亚洲妇熟xx妇色黄| 激情都市一区二区| 波多野结衣中文字幕一区二区三区| 99视频超级精品| 欧美日韩一区二区电影| 日韩一区二区三区高清免费看看| 久久亚洲综合色| 日韩理论片中文av| 日本不卡中文字幕| 成人av网站在线观看免费| 在线免费观看视频一区| 欧美一区二区三区免费在线看| 久久精品一区蜜桃臀影院| 一区二区三区四区蜜桃| 久久成人免费网站| 91热门视频在线观看| 日韩丝袜美女视频| 亚洲欧美日韩国产另类专区| 日本怡春院一区二区| 不卡的看片网站| 制服丝袜亚洲网站| 中文字幕一区二区三区不卡| 五月婷婷综合激情| 成人一级视频在线观看| 欧美精品xxxxbbbb| 国产精品久久久久久久久免费樱桃 | 欧美日韩国产高清一区二区三区| 日韩视频一区在线观看| 亚洲三级在线播放| 国产一区二区三区久久久| 欧美性猛片xxxx免费看久爱| 久久久另类综合| 日韩极品在线观看| 99精品在线免费| 久久久九九九九| 日韩vs国产vs欧美| 在线观看日韩毛片| 久久精品亚洲国产奇米99| 亚洲一区二区影院| 久久精品99国产精品| 欧美疯狂性受xxxxx喷水图片| 国产精品白丝在线| 久久99热这里只有精品| 欧美日韩免费一区二区三区| 一区二区三区资源| 欧美色大人视频| 亚洲成人在线网站| 欧美一区二区三区小说| 蜜芽一区二区三区| 久久这里只有精品首页| 国产精品一区免费在线观看| 久久久激情视频| 成人不卡免费av| 亚洲你懂的在线视频| 欧美伊人久久久久久午夜久久久久| 亚洲主播在线观看| 正在播放一区二区| 韩国成人在线视频| 国产精品久久免费看| 91麻豆视频网站| 性做久久久久久免费观看| 91精品国产一区二区人妖| 国内精品免费**视频| 国产日韩精品一区二区三区| caoporen国产精品视频| 亚洲一区二区视频在线观看| 777奇米成人网| 国产乱人伦精品一区二区在线观看| 国产亚洲欧洲一区高清在线观看| 成人黄色综合网站| 亚洲国产乱码最新视频 | 欧美综合一区二区| 视频一区二区国产| 久久久久久久免费视频了| eeuss鲁片一区二区三区| 亚洲国产日韩在线一区模特| 欧美一级久久久| 99国产精品国产精品久久| 日韩精品免费专区| 日本一区二区三区在线不卡| 欧洲中文字幕精品| 韩国午夜理伦三级不卡影院|