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

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

?? jquery.js

?? jQuery即學即用
?? JS
?? 第 1 頁 / 共 5 頁
字號:
/*! * jQuery JavaScript Library v1.4.2 * http://jquery.com/ * * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Sizzle.js * http://sizzlejs.com/ * Copyright 2010, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * * Date: Sat Feb 13 22:33:48 2010 -0500 */(function( window, undefined ) {// Define a local copy of jQueryvar jQuery = function( selector, context ) {		// The jQuery object is actually just the init constructor 'enhanced'		return new jQuery.fn.init( selector, context );	},	// Map over jQuery in case of overwrite	_jQuery = window.jQuery,	// Map over the $ in case of overwrite	_$ = window.$,	// Use the correct document accordingly with window argument (sandbox)	document = window.document,	// A central reference to the root jQuery(document)	rootjQuery,	// A simple way to check for HTML strings or ID strings	// (both of which we optimize for)	quickExpr = /^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,	// Is it a simple selector	isSimple = /^.[^:#\[\.,]*$/,	// Check if a string has a non-whitespace character in it	rnotwhite = /\S/,	// Used for trimming whitespace	rtrim = /^(\s|\u00A0)+|(\s|\u00A0)+$/g,	// Match a standalone tag	rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/,	// Keep a UserAgent string for use with jQuery.browser	userAgent = navigator.userAgent,	// For matching the engine and version of the browser	browserMatch,		// Has the ready events already been bound?	readyBound = false,		// The functions to execute on DOM ready	readyList = [],	// The ready event handler	DOMContentLoaded,	// Save a reference to some core methods	toString = Object.prototype.toString,	hasOwnProperty = Object.prototype.hasOwnProperty,	push = Array.prototype.push,	slice = Array.prototype.slice,	indexOf = Array.prototype.indexOf;jQuery.fn = jQuery.prototype = {	init: function( selector, context ) {		var match, elem, ret, doc;		// Handle $(""), $(null), or $(undefined)		if ( !selector ) {			return this;		}		// Handle $(DOMElement)		if ( selector.nodeType ) {			this.context = this[0] = selector;			this.length = 1;			return this;		}				// The body element only exists once, optimize finding it		if ( selector === "body" && !context ) {			this.context = document;			this[0] = document.body;			this.selector = "body";			this.length = 1;			return this;		}		// Handle HTML strings		if ( typeof selector === "string" ) {			// Are we dealing with HTML string or an ID?			match = quickExpr.exec( selector );			// Verify a match, and that no context was specified for #id			if ( match && (match[1] || !context) ) {				// HANDLE: $(html) -> $(array)				if ( match[1] ) {					doc = (context ? context.ownerDocument || context : document);					// If a single string is passed in and it's a single tag					// just do a createElement and skip the rest					ret = rsingleTag.exec( selector );					if ( ret ) {						if ( jQuery.isPlainObject( context ) ) {							selector = [ document.createElement( ret[1] ) ];							jQuery.fn.attr.call( selector, context, true );						} else {							selector = [ doc.createElement( ret[1] ) ];						}					} else {						ret = buildFragment( [ match[1] ], [ doc ] );						selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes;					}										return jQuery.merge( this, selector );									// HANDLE: $("#id")				} else {					elem = document.getElementById( match[2] );					if ( elem ) {						// Handle the case where IE and Opera return items						// by name instead of ID						if ( elem.id !== match[2] ) {							return rootjQuery.find( selector );						}						// Otherwise, we inject the element directly into the jQuery object						this.length = 1;						this[0] = elem;					}					this.context = document;					this.selector = selector;					return this;				}			// HANDLE: $("TAG")			} else if ( !context && /^\w+$/.test( selector ) ) {				this.selector = selector;				this.context = document;				selector = document.getElementsByTagName( selector );				return jQuery.merge( this, selector );			// HANDLE: $(expr, $(...))			} else if ( !context || context.jquery ) {				return (context || rootjQuery).find( selector );			// HANDLE: $(expr, context)			// (which is just equivalent to: $(context).find(expr)			} else {				return jQuery( context ).find( selector );			}		// HANDLE: $(function)		// Shortcut for document ready		} else if ( jQuery.isFunction( selector ) ) {			return rootjQuery.ready( selector );		}		if (selector.selector !== undefined) {			this.selector = selector.selector;			this.context = selector.context;		}		return jQuery.makeArray( selector, this );	},	// Start with an empty selector	selector: "",	// The current version of jQuery being used	jquery: "1.4.2",	// The default length of a jQuery object is 0	length: 0,	// The number of elements contained in the matched element set	size: function() {		return this.length;	},	toArray: function() {		return slice.call( this, 0 );	},	// Get the Nth element in the matched element set OR	// Get the whole matched element set as a clean array	get: function( num ) {		return num == null ?			// Return a 'clean' array			this.toArray() :			// Return just the object			( num < 0 ? this.slice(num)[ 0 ] : this[ num ] );	},	// Take an array of elements and push it onto the stack	// (returning the new matched element set)	pushStack: function( elems, name, selector ) {		// Build a new jQuery matched element set		var ret = jQuery();		if ( jQuery.isArray( elems ) ) {			push.apply( ret, elems );				} else {			jQuery.merge( ret, elems );		}		// Add the old object onto the stack (as a reference)		ret.prevObject = this;		ret.context = this.context;		if ( name === "find" ) {			ret.selector = this.selector + (this.selector ? " " : "") + selector;		} else if ( name ) {			ret.selector = this.selector + "." + name + "(" + selector + ")";		}		// Return the newly-formed element set		return ret;	},	// Execute a callback for every element in the matched set.	// (You can seed the arguments with an array of args, but this is	// only used internally.)	each: function( callback, args ) {		return jQuery.each( this, callback, args );	},		ready: function( fn ) {		// Attach the listeners		jQuery.bindReady();		// If the DOM is already ready		if ( jQuery.isReady ) {			// Execute the function immediately			fn.call( document, jQuery );		// Otherwise, remember the function for later		} else if ( readyList ) {			// Add the function to the wait list			readyList.push( fn );		}		return this;	},		eq: function( i ) {		return i === -1 ?			this.slice( i ) :			this.slice( i, +i + 1 );	},	first: function() {		return this.eq( 0 );	},	last: function() {		return this.eq( -1 );	},	slice: function() {		return this.pushStack( slice.apply( this, arguments ),			"slice", slice.call(arguments).join(",") );	},	map: function( callback ) {		return this.pushStack( jQuery.map(this, function( elem, i ) {			return callback.call( elem, i, elem );		}));	},		end: function() {		return this.prevObject || jQuery(null);	},	// For internal use only.	// Behaves like an Array's method, not like a jQuery method.	push: push,	sort: [].sort,	splice: [].splice};// Give the init function the jQuery prototype for later instantiationjQuery.fn.init.prototype = jQuery.fn;jQuery.extend = jQuery.fn.extend = function() {	// copy reference to target object	var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy;	// Handle a deep copy situation	if ( typeof target === "boolean" ) {		deep = target;		target = arguments[1] || {};		// skip the boolean and the target		i = 2;	}	// Handle case when target is a string or something (possible in deep copy)	if ( typeof target !== "object" && !jQuery.isFunction(target) ) {		target = {};	}	// extend jQuery itself if only one argument is passed	if ( length === i ) {		target = this;		--i;	}	for ( ; i < length; i++ ) {		// Only deal with non-null/undefined values		if ( (options = arguments[ i ]) != null ) {			// Extend the base object			for ( name in options ) {				src = target[ name ];				copy = options[ name ];				// Prevent never-ending loop				if ( target === copy ) {					continue;				}				// Recurse if we're merging object literal values or arrays				if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) {					var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src						: jQuery.isArray(copy) ? [] : {};					// Never move original objects, clone them					target[ name ] = jQuery.extend( deep, clone, copy );				// Don't bring in undefined values				} else if ( copy !== undefined ) {					target[ name ] = copy;				}			}		}	}	// Return the modified object	return target;};jQuery.extend({	noConflict: function( deep ) {		window.$ = _$;		if ( deep ) {			window.jQuery = _jQuery;		}		return jQuery;	},		// Is the DOM ready to be used? Set to true once it occurs.	isReady: false,		// Handle when the DOM is ready	ready: function() {		// Make sure that the DOM is not already loaded		if ( !jQuery.isReady ) {			// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).			if ( !document.body ) {				return setTimeout( jQuery.ready, 13 );			}			// Remember that the DOM is ready			jQuery.isReady = true;			// If there are functions bound, to execute			if ( readyList ) {				// Execute all of them				var fn, i = 0;				while ( (fn = readyList[ i++ ]) ) {					fn.call( document, jQuery );				}				// Reset the list of functions				readyList = null;			}			// Trigger any bound ready events			if ( jQuery.fn.triggerHandler ) {				jQuery( document ).triggerHandler( "ready" );			}		}	},		bindReady: function() {		if ( readyBound ) {			return;		}		readyBound = true;		// Catch cases where $(document).ready() is called after the		// browser event has already occurred.		if ( document.readyState === "complete" ) {			return jQuery.ready();		}		// Mozilla, Opera and webkit nightlies currently support this event		if ( document.addEventListener ) {			// Use the handy event callback			document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );						// A fallback to window.onload, that will always work			window.addEventListener( "load", jQuery.ready, false );		// If IE event model is used		} else if ( document.attachEvent ) {			// ensure firing before onload,			// maybe late but safe also for iframes			document.attachEvent("onreadystatechange", DOMContentLoaded);						// A fallback to window.onload, that will always work			window.attachEvent( "onload", jQuery.ready );			// If IE and not a frame			// continually check to see if the document is ready			var toplevel = false;			try {				toplevel = window.frameElement == null;			} catch(e) {}			if ( document.documentElement.doScroll && toplevel ) {				doScrollCheck();			}		}	},	// See test/unit/core.js for details concerning isFunction.	// Since version 1.3, DOM methods and functions like alert	// aren't supported. They return false on IE (#2968).	isFunction: function( obj ) {		return toString.call(obj) === "[object Function]";	},	isArray: function( obj ) {		return toString.call(obj) === "[object Array]";	},	isPlainObject: function( obj ) {		// Must be an Object.		// Because of IE, we also have to check the presence of the constructor property.		// Make sure that DOM nodes and window objects don't pass through, as well		if ( !obj || toString.call(obj) !== "[object Object]" || obj.nodeType || obj.setInterval ) {			return false;		}				// Not own constructor property must be Object		if ( obj.constructor			&& !hasOwnProperty.call(obj, "constructor")			&& !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {			return false;		}				// Own properties are enumerated firstly, so to speed up,		// if last one is own, then all properties are own.			var key;		for ( key in obj ) {}				return key === undefined || hasOwnProperty.call( obj, key );	},	isEmptyObject: function( obj ) {		for ( var name in obj ) {			return false;		}		return true;	},		error: function( msg ) {		throw msg;	},		parseJSON: function( data ) {		if ( typeof data !== "string" || !data ) {			return null;		}		// Make sure leading/trailing whitespace is removed (IE can't handle it)		data = jQuery.trim( data );				// Make sure the incoming data is actual JSON		// Logic borrowed from http://json.org/json2.js		if ( /^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@")			.replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]")

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久成人麻豆午夜电影| 日本aⅴ免费视频一区二区三区| 国产精品久久免费看| 亚洲免费观看视频| 蜜桃av噜噜一区| 99久久国产免费看| 日韩一区二区三区视频| 91精品国产欧美一区二区| 国产日韩精品一区二区浪潮av| 亚洲国产综合色| 国产成人综合自拍| 555www色欧美视频| 国产精品久久夜| 久久电影网站中文字幕 | av不卡在线播放| 欧美影视一区在线| 91精品国产手机| 亚洲视频 欧洲视频| 国内精品不卡在线| 4438x成人网最大色成网站| 亚洲欧洲成人av每日更新| 麻豆一区二区在线| 在线看国产一区| 久久综合精品国产一区二区三区| 亚洲一区av在线| thepron国产精品| 6080亚洲精品一区二区| 亚洲精品高清视频在线观看| 国产精品亚洲成人| 欧美一级片在线看| 亚洲成人av电影| 日本道色综合久久| 亚洲欧洲无码一区二区三区| 国模大尺度一区二区三区| 日韩美一区二区三区| 亚洲欧美在线视频| 成人动漫一区二区在线| 久久午夜色播影院免费高清| 久久99精品一区二区三区| 成人免费高清视频在线观看| 久久久天堂av| 国产真实乱偷精品视频免| 欧美sm极限捆绑bd| 免费在线观看视频一区| 欧美三级乱人伦电影| 亚洲精品乱码久久久久久日本蜜臀| 国产自产高清不卡| 国产亚洲综合在线| 国产精品一级片| 欧美激情在线一区二区| 大美女一区二区三区| 久久亚区不卡日本| caoporn国产精品| 亚洲大片一区二区三区| 精品毛片乱码1区2区3区| 成人久久18免费网站麻豆| 亚洲午夜久久久| 26uuu色噜噜精品一区二区| 成人精品国产福利| 亚洲国产一区视频| 亚洲精品一区二区三区在线观看| 粉嫩av一区二区三区粉嫩| 亚洲综合色自拍一区| 精品日韩一区二区三区免费视频| 不卡的电视剧免费网站有什么| 香蕉加勒比综合久久| 久久精品欧美日韩| 欧美日韩免费一区二区三区| 国产综合成人久久大片91| 亚洲免费在线观看| 日韩精品一区二区三区四区视频 | 午夜亚洲福利老司机| 亚洲免费观看高清完整版在线 | 欧洲国产伦久久久久久久| 免费精品视频最新在线| 中文字幕在线视频一区| 88在线观看91蜜桃国自产| 成人网在线免费视频| 性做久久久久久| 综合色中文字幕| www国产精品av| 欧美美女喷水视频| 成人激情动漫在线观看| 奇米影视7777精品一区二区| 亚洲精品视频一区二区| 久久久久久黄色| 欧美一级久久久久久久大片| 色狠狠一区二区三区香蕉| 国产成都精品91一区二区三| 麻豆一区二区99久久久久| 夜夜精品视频一区二区| 日本一区二区成人在线| 精品久久久久99| 欧美一区二区视频在线观看2022| 色欧美乱欧美15图片| www.亚洲在线| 国产成人亚洲综合a∨婷婷图片| 免费精品视频最新在线| 午夜精品久久久久久久久| 亚洲视频一区二区在线观看| 久久久久久久网| 欧美成人一区二区三区在线观看| 欧美福利一区二区| 欧美日免费三级在线| 91官网在线免费观看| 91捆绑美女网站| 色妹子一区二区| 色综合久久久久综合99| av色综合久久天堂av综合| 国产99久久久精品| www.色综合.com| 97精品国产露脸对白| 成人av在线网| 99麻豆久久久国产精品免费| 99久久伊人网影院| 9色porny自拍视频一区二区| 99久久免费国产| 色猫猫国产区一区二在线视频| 日本久久一区二区| 精品视频在线免费看| 欧美精品色一区二区三区| 欧美日韩成人在线| 日韩欧美视频一区| 精品国产乱码久久久久久夜甘婷婷| xnxx国产精品| 中文字幕av一区二区三区免费看| 国产精品麻豆久久久| 亚洲精品菠萝久久久久久久| 亚洲图片欧美综合| 免费久久精品视频| 国产成人欧美日韩在线电影| av不卡在线播放| 在线免费精品视频| 日韩欧美亚洲另类制服综合在线| 久久综合久久综合久久| 国产精品国产三级国产aⅴ入口 | 日本午夜精品一区二区三区电影| 午夜激情久久久| 老色鬼精品视频在线观看播放| 国内精品嫩模私拍在线| 91在线云播放| 欧美日产在线观看| 久久久夜色精品亚洲| 亚洲欧美国产三级| 天天影视涩香欲综合网| 国产真实乱子伦精品视频| 99国产欧美另类久久久精品| 欧美日韩午夜精品| 久久免费视频色| 亚洲综合在线视频| 国产剧情一区二区三区| 一本大道av伊人久久综合| 91精品国产欧美一区二区18| 国产精品网站在线观看| 天堂va蜜桃一区二区三区| 国产91丝袜在线18| 欧美一区二区在线免费播放| 国产精品伦理一区二区| 日韩国产一区二| 91亚洲男人天堂| 久久久久99精品国产片| 亚洲高清免费在线| 国产成人综合在线| 欧美一区二区三区日韩视频| 一区在线观看免费| 国产呦萝稀缺另类资源| 欧美日韩一区二区在线视频| 国产日韩欧美制服另类| 日本va欧美va精品发布| 91极品美女在线| 中文字幕一区不卡| 国产剧情一区在线| 欧美一级在线视频| 亚洲成a人片在线不卡一二三区| 国产91高潮流白浆在线麻豆| 欧美精品v日韩精品v韩国精品v| 亚洲欧洲色图综合| 丁香啪啪综合成人亚洲小说| 精品国产露脸精彩对白| 午夜成人免费视频| 91福利国产精品| 国产精品麻豆久久久| 国产精品99久久久久久宅男| 日韩美一区二区三区| 色婷婷国产精品| 国产精品高潮呻吟| 国产精品一品二品| 久久久久99精品一区| 狠狠v欧美v日韩v亚洲ⅴ| 69久久夜色精品国产69蝌蚪网| 洋洋成人永久网站入口| 一本久久a久久精品亚洲| 国产精品久久毛片| 高清不卡一区二区在线| 久久亚洲影视婷婷| 国产精品夜夜嗨| 国产精品婷婷午夜在线观看| 福利视频网站一区二区三区| 久久久精品日韩欧美| 国产黄色精品网站|