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

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

?? jquery.js

?? 利用jquery實現的類似百度登錄的燈箱效果實例……ajax的經典例子
?? JS
?? 第 1 頁 / 共 4 頁
字號:
				// Get next function			var f = elem.queue[type][0];					if ( f ) f.apply( elem );		}	},	/*	 * I originally wrote fx() as a clone of moo.fx and in the process	 * of making it small in size the code became illegible to sane	 * people. You've been warned.	 */		fx: function( elem, options, prop ){			var z = this;			// The users options		z.o = {			duration: options.duration || 400,			complete: options.complete,			step: options.step		};			// The element		z.el = elem;			// The styles		var y = z.el.style;			// Simple function for setting a style value		z.a = function(){			if ( options.step )				options.step.apply( elem, [ z.now ] ); 			if ( prop == "opacity" )				jQuery.attr(y, "opacity", z.now); // Let attr handle opacity			else if ( parseInt(z.now) ) // My hate for IE will never die				y[prop] = parseInt(z.now) + "px";							y.display = "block";		};			// Figure out the maximum number to run to		z.max = function(){			return parseFloat( jQuery.css(z.el,prop) );		};			// Get the current size		z.cur = function(){			var r = parseFloat( jQuery.curCSS(z.el, prop) );			return r && r > -10000 ? r : z.max();		};			// Start an animation from one number to another		z.custom = function(from,to){			z.startTime = (new Date()).getTime();			z.now = from;			z.a();				z.timer = setInterval(function(){				z.step(from, to);			}, 13);		};			// Simple 'show' function		z.show = function( p ){			if ( !z.el.orig ) z.el.orig = {};			// Remember where we started, so that we can go back to it later			z.el.orig[prop] = this.cur();						// Begin the animation			if (prop == "opacity")				z.custom(z.el.orig[prop], 1);			else				z.custom(0, z.el.orig[prop]);			// Stupid IE, look what you made me do			if ( prop != "opacity" )				y[prop] = "1px";		};			// Simple 'hide' function		z.hide = function(){			if ( !z.el.orig ) z.el.orig = {};			// Remember where we started, so that we can go back to it later			z.el.orig[prop] = this.cur();			z.o.hide = true;			// Begin the animation			z.custom(z.el.orig[prop], 0);		};			// Remember  the overflow of the element		if ( !z.el.oldOverlay )			z.el.oldOverflow = jQuery.css( z.el, "overflow" );			// Make sure that nothing sneaks out		y.overflow = "hidden";			// Each step of an animation		z.step = function(firstNum, lastNum){			var t = (new Date()).getTime();				if (t > z.o.duration + z.startTime) {				// Stop the timer				clearInterval(z.timer);				z.timer = null;				z.now = lastNum;				z.a();				z.el.curAnim[ prop ] = true;								var done = true;				for ( var i in z.el.curAnim )					if ( z.el.curAnim[i] !== true )						done = false;										if ( done ) {					// Reset the overflow					y.overflow = z.el.oldOverflow;									// Hide the element if the "hide" operation was done					if ( z.o.hide ) 						y.display = 'none';										// Reset the property, if the item has been hidden					if ( z.o.hide ) {						for ( var p in z.el.curAnim ) {							if (p == "opacity" && jQuery.browser.msie)								jQuery.attr(y, p, z.el.orig[p]);							else								y[ p ] = z.el.orig[p] + "px";								// set its height and/or width to auto							if ( p == 'height' || p == 'width' )								jQuery.setAuto( z.el, p );						}					}				}				// If a callback was provided, execute it				if( done && z.o.complete && z.o.complete.constructor == Function )					// Execute the complete function					z.o.complete.apply( z.el );			} else {				// Figure out where in the animation we are and set the number				var p = (t - this.startTime) / z.o.duration;				z.now = ((-Math.cos(p*Math.PI)/2) + 0.5) * (lastNum-firstNum) + firstNum;					// Perform the next step of the animation				z.a();			}		};		}});jQuery.fn.extend({	loadIfModified: function( url, params, callback ) {		this.load( url, params, callback, 1 );	},	load: function( url, params, callback, ifModified ) {		if ( url.constructor == Function )			return this.bind("load", url);			callback = callback || function(){};			// Default to a GET request		var type = "GET";			// If the second parameter was provided		if ( params ) {			// If it's a function			if ( params.constructor == Function ) {				// We assume that it's the callback				callback = params;				params = null;							// Otherwise, build a param string			} else {				params = jQuery.param( params );				type = "POST";			}		}				var self = this;				// Request the remote document		jQuery.ajax( type, url, params,function(res, status){						if ( status == "success" || !ifModified && status == "notmodified" ) {				// Inject the HTML into all the matched elements				self.html(res.responseText).each( callback, [res.responseText, status] );								// Execute all the scripts inside of the newly-injected HTML				jQuery("script", self).each(function(){					if ( this.src )						jQuery.getScript( this.src );					else						eval.call( window, this.text || this.textContent || this.innerHTML || "" );				});			} else				callback.apply( self, [res.responseText, status] );			}, ifModified);				return this;	},	serialize: function() {		return jQuery.param( this );	}	});// If IE is used, create a wrapper for the XMLHttpRequest objectif ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )	XMLHttpRequest = function(){		return new ActiveXObject(			navigator.userAgent.indexOf("MSIE 5") >= 0 ?			"Microsoft.XMLHTTP" : "Msxml2.XMLHTTP"		);	};// Attach a bunch of functions for handling common AJAX events new function(){	var e = "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess".split(",");		for ( var i = 0; i < e.length; i++ ) new function(){		var o = e[i];		jQuery.fn[o] = function(f){			return this.bind(o, f);		};	};};jQuery.extend({	get: function( url, data, callback, type, ifModified ) {		if ( data.constructor == Function ) {			type = callback;			callback = data;			data = null;		}				// append ? + data or & + data, in case there are already params		if ( data ) url += ((url.indexOf("?") > -1) ? "&" : "?") + jQuery.param(data);				// Build and start the HTTP Request		jQuery.ajax( "GET", url, null, function(r, status) {			if ( callback ) callback( jQuery.httpData(r,type), status );		}, ifModified);	},	getIfModified: function( url, data, callback, type ) {		jQuery.get(url, data, callback, type, 1);	},	getScript: function( url, callback ) {		jQuery.get(url, callback, "script");	},	getJSON: function( url, data, callback ) {		if(callback)			jQuery.get(url, data, callback, "json");		else {			jQuery.get(url, data, "json");		}	},	post: function( url, data, callback, type ) {		// Build and start the HTTP Request		jQuery.ajax( "POST", url, jQuery.param(data), function(r, status) {			if ( callback ) callback( jQuery.httpData(r,type), status );		});	},		// timeout (ms)	timeout: 0,	ajaxTimeout: function(timeout) {		jQuery.timeout = timeout;	},	// Last-Modified header cache for next request	lastModified: {},	ajax: function( type, url, data, ret, ifModified ) {		// If only a single argument was passed in,		// assume that it is a object of key/value pairs		if ( !url ) {			ret = type.complete;			var success = type.success;			var error = type.error;			var dataType = type.dataType;			var global = typeof type.global == "boolean" ? type.global : true;			var timeout = typeof type.timeout == "number" ? type.timeout : jQuery.timeout;			var ifModified = type.ifModified || false;			data = type.data;			url = type.url;			type = type.type;		}				// Watch for a new set of requests		if ( global && ! jQuery.active++ )			jQuery.event.trigger( "ajaxStart" );		var requestDone = false;			// Create the request object		var xml = new XMLHttpRequest();			// Open the socket		xml.open(type || "GET", url, true);				// Set the correct header, if data is being sent		if ( data )			xml.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");				// Set the If-Modified-Since header, if ifModified mode.		if ( ifModified )			xml.setRequestHeader("If-Modified-Since",				jQuery.lastModified[url] || "Thu, 01 Jan 1970 00:00:00 GMT" );				// Set header so the called script knows that it's an XMLHttpRequest		xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");			// Make sure the browser sends the right content length		if ( xml.overrideMimeType )			xml.setRequestHeader("Connection", "close");				// Wait for a response to come back		var onreadystatechange = function(istimeout){			// The transfer is complete and the data is available, or the request timed out			if ( xml && (xml.readyState == 4 || istimeout == "timeout") ) {				requestDone = true;				var status = jQuery.httpSuccess( xml ) && istimeout != "timeout" ?					ifModified && jQuery.httpNotModified( xml, url ) ? "notmodified" : "success" : "error";								// Make sure that the request was successful or notmodified				if ( status != "error" ) {					// Cache Last-Modified header, if ifModified mode.					var modRes;					try {						modRes = xml.getResponseHeader("Last-Modified");					} catch(e) {} // swallow exception thrown by FF if header is not available										if ( ifModified && modRes )						jQuery.lastModified[url] = modRes;										// If a local callback was specified, fire it					if ( success )						success( jQuery.httpData( xml, dataType ), status );										// Fire the global callback					if( global )						jQuery.event.trigger( "ajaxSuccess" );								// Otherwise, the request was not successful				} else {					// If a local callback was specified, fire it					if ( error ) error( xml, status );										// Fire the global callback					if( global )						jQuery.event.trigger( "ajaxError" );				}								// The request was completed				if( global )					jQuery.event.trigger( "ajaxComplete" );								// Handle the global AJAX counter				if ( global && ! --jQuery.active )					jQuery.event.trigger( "ajaxStop" );					// Process result				if ( ret ) ret(xml, status);								// Stop memory leaks				xml.onreadystatechange = function(){};				xml = null;							}		};		xml.onreadystatechange = onreadystatechange;				// Timeout checker		if(timeout > 0)			setTimeout(function(){				// Check to see if the request is still happening				if (xml) {					// Cancel the request					xml.abort();					if ( !requestDone ) onreadystatechange( "timeout" );					// Clear from memory					xml = null;				}			}, timeout);				// Send the data		xml.send(data);	},		// Counter for holding the number of active queries	active: 0,		// Determines if an XMLHttpRequest was successful or not	httpSuccess: function(r) {		try {			return !r.status && location.protocol == "file:" ||				( r.status >= 200 && r.status < 300 ) || r.status == 304 ||				jQuery.browser.safari && r.status == undefined;		} catch(e){}		return false;	},	// Determines if an XMLHttpRequest returns NotModified	httpNotModified: function(xml, url) {		try {			var xmlRes = xml.getResponseHeader("Last-Modified");			// Firefox always returns 200. check Last-Modified date			return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||				jQuery.browser.safari && xml.status == undefined;		} catch(e){}		return false;	},		/* Get the data out of an XMLHttpRequest.	 * Return parsed XML if content-type header is "xml" and type is "xml" or omitted,	 * otherwise return plain text.	 * (String) data - The type of data that you're expecting back,	 * (e.g. "xml", "html", "script")	 */	httpData: function(r,type) {		var ct = r.getResponseHeader("content-type");		var data = !type && ct && ct.indexOf("xml") >= 0;		data = type == "xml" || data ? r.responseXML : r.responseText;		// If the type is "script", eval it		if ( type == "script" ) eval.call( window, data );		// Get the JavaScript object, if JSON is used.		if ( type == "json" ) eval( "data = " + data );		return data;	},		// Serialize an array of form elements or a set of	// key/values into a query string	param: function(a) {		var s = [];				// If an array was passed in, assume that it is an array		// of form elements		if ( a.constructor == Array || a.jquery ) {			// Serialize the form elements			for ( var i = 0; i < a.length; i++ )				s.push( a[i].name + "=" + encodeURIComponent( a[i].value ) );					// Otherwise, assume that it's an object of key/value pairs		} else {			// Serialize the key/values			for ( var j in a )				s.push( j + "=" + encodeURIComponent( a[j] ) );		}				// Return the resulting serialization		return s.join("&");	}});} // close: if(typeof window.jQuery == "undefined") {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91小视频免费看| 成人高清在线视频| 国产精品成人一区二区艾草| 欧美日韩色一区| 成人性生交大片免费看中文| 丝袜诱惑亚洲看片| 国产精品久久毛片av大全日韩| 欧美日韩精品一区视频| 福利一区二区在线| 老司机精品视频在线| 亚洲激情成人在线| 国产精品网站在线观看| 日韩免费视频一区| 欧美国产精品中文字幕| 精品日韩99亚洲| 欧美日韩高清在线| 色综合天天综合网国产成人综合天 | 99精品热视频| 韩国三级电影一区二区| 日日夜夜一区二区| 亚洲国产日韩一区二区| 亚洲精品欧美综合四区| 欧美激情综合在线| 精品国产三级电影在线观看| 717成人午夜免费福利电影| 欧美吻胸吃奶大尺度电影 | 日韩一区二区三区四区| 欧美视频完全免费看| 色一情一乱一乱一91av| 不卡一区二区在线| 国产98色在线|日韩| 国内精品第一页| 久久不见久久见免费视频1| 天天爽夜夜爽夜夜爽精品视频 | 免费人成黄页网站在线一区二区 | 国产高清久久久久| 激情六月婷婷久久| 国产在线精品免费| 国产一区二区福利视频| 国产综合久久久久影院| 国产一区欧美二区| 国产一区二区伦理| 国内精品视频一区二区三区八戒| 日韩精品电影一区亚洲| 秋霞午夜av一区二区三区| 日本麻豆一区二区三区视频| 美女视频黄免费的久久 | 亚洲欧洲性图库| 亚洲啪啪综合av一区二区三区| 中文字幕一区免费在线观看| 国产精品免费观看视频| 亚洲三级在线看| 一级做a爱片久久| 五月激情丁香一区二区三区| 视频在线在亚洲| 久久99热国产| 丁香六月久久综合狠狠色| av网站一区二区三区| 在线视频一区二区三区| 欧美三级日韩三级国产三级| 7777精品伊人久久久大香线蕉经典版下载| 日韩亚洲欧美一区| 久久久午夜精品理论片中文字幕| 国产精品美女久久久久久久网站| 亚洲欧洲精品一区二区三区| 亚洲成人av资源| 久久99久久久久| caoporm超碰国产精品| 欧美影院午夜播放| 欧美不卡视频一区| 国产精品超碰97尤物18| 香港成人在线视频| 国产激情91久久精品导航| 在线看一区二区| 精品国产乱码久久久久久闺蜜| 中文一区二区完整视频在线观看| 一区二区视频在线| 久久99国产精品久久| 成人免费的视频| 91精品国产色综合久久久蜜香臀| 久久美女高清视频| 亚洲国产wwwccc36天堂| 国产精品白丝jk白祙喷水网站| 91亚洲永久精品| 欧美成人猛片aaaaaaa| 亚洲天堂成人网| 国产一区二区三区在线观看免费 | 91极品美女在线| 精品国产成人系列| 悠悠色在线精品| 七七婷婷婷婷精品国产| 99久久er热在这里只有精品66| 欧美日韩夫妻久久| 国产精品欧美一区二区三区| 日日摸夜夜添夜夜添精品视频 | 91毛片在线观看| 精品国产91久久久久久久妲己| 亚洲三级理论片| 国产精品白丝jk黑袜喷水| 在线电影欧美成精品| 中文字幕一区二区三区乱码在线| 免费成人在线视频观看| www.亚洲色图.com| 亚洲精品一区二区精华| 亚洲国产成人av网| 色综合久久九月婷婷色综合| 精品国产伦理网| 男女激情视频一区| 欧美美女一区二区| 一区二区三区四区高清精品免费观看| 国产一区视频网站| 日韩欧美一区二区久久婷婷| 亚洲黄色av一区| 93久久精品日日躁夜夜躁欧美| 精品sm捆绑视频| 日本成人在线电影网| 欧美三级韩国三级日本三斤| 亚洲欧洲三级电影| 国产 欧美在线| 国产欧美日韩亚州综合| 精品一区二区三区影院在线午夜| 欧美一区午夜视频在线观看| 亚洲成人一区二区在线观看| 色婷婷综合五月| 最新日韩av在线| 91日韩精品一区| 亚洲欧美偷拍卡通变态| a亚洲天堂av| 国产精品福利av| av网站免费线看精品| 亚洲欧美一区二区三区国产精品| 99久久亚洲一区二区三区青草| 国产婷婷一区二区| 成人午夜视频在线观看| 中文字幕一区二区三中文字幕| 懂色av一区二区夜夜嗨| 国产三级精品三级在线专区| 国产麻豆91精品| 国产欧美一区二区精品性| 国产成人精品免费视频网站| 国产欧美日韩中文久久| 大尺度一区二区| 亚洲欧美日韩中文字幕一区二区三区| 91在线视频观看| 一区二区三区精品视频| 欧美三级三级三级爽爽爽| 日韩av电影免费观看高清完整版在线观看| 欧美另类z0zxhd电影| 免费看欧美女人艹b| 精品国产一区二区精华| 激情久久五月天| 国产女同互慰高潮91漫画| 99久久精品久久久久久清纯| 一区二区在线观看视频| 欧美三级在线看| 九色porny丨国产精品| 国产亚洲一区二区在线观看| 99精品久久免费看蜜臀剧情介绍| 亚洲欧洲日韩女同| 欧美另类高清zo欧美| 国产一区二区在线观看免费| 国产精品女主播在线观看| 欧洲一区二区av| 另类小说一区二区三区| 国产精品无圣光一区二区| 欧美丝袜丝交足nylons图片| 日本 国产 欧美色综合| 国产午夜亚洲精品午夜鲁丝片| 99久久精品免费看国产| 日产国产欧美视频一区精品| 久久久国产一区二区三区四区小说 | 久久精品夜色噜噜亚洲a∨| 成人黄色a**站在线观看| 一区二区成人在线| 欧美电影精品一区二区| heyzo一本久久综合| 日韩激情一区二区| 国产日韩影视精品| 欧亚洲嫩模精品一区三区| 久久成人免费电影| 亚洲免费毛片网站| 2024国产精品| 在线观看日韩电影| 国产高清亚洲一区| 亚洲va欧美va人人爽| 久久一区二区视频| 欧美亚洲另类激情小说| 国产综合久久久久久鬼色| 一区二区三区精品在线观看| 久久久久一区二区三区四区| 欧洲一区在线电影| 成人性生交大片免费看中文网站 | 波多野结衣欧美| 奇米四色…亚洲| 洋洋av久久久久久久一区| 久久久久久免费网| 日韩欧美亚洲一区二区| 色婷婷精品大在线视频| 国产激情视频一区二区在线观看 | 日韩成人精品视频|