⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jquery.js

📁 Piwik#Opensourcewebanalytics一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大.无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 JS
📖 第 1 页 / 共 5 页
字号:
// prevent execution of jQuery if included more than onceif(typeof window.jQuery == "undefined") {/* * jQuery @VERSION - New Wave Javascript * * Copyright (c) 2007 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * $Date: 2007-07-03 15:19:09 +0200 (Di, 03 Jul 2007) $ * $Rev: 2217 $ */// Global undefined variablewindow.undefined = window.undefined;var jQuery = function(a,c) {	// If the context is global, return a new object	if ( window == this || !this.init )		return new jQuery(a,c);		return this.init(a,c);};// Map over the $ in case of overwriteif ( typeof $ != "undefined" )	jQuery._$ = $;	// Map the jQuery namespace to the '$' onevar $ = jQuery;jQuery.fn = jQuery.prototype = {	init: function(a,c) {		// Make sure that a selection was provided		a = a || document;		// HANDLE: $(function)		// Shortcut for document ready		if ( jQuery.isFunction(a) )			return new jQuery(document)[ jQuery.fn.ready ? "ready" : "load" ]( a );		// Handle HTML strings		if ( typeof a  == "string" ) {			// HANDLE: $(html) -> $(array)			var m = /^[^<]*(<(.|\s)+>)[^>]*$/.exec(a);			if ( m )				a = jQuery.clean( [ m[1] ] );			// HANDLE: $(expr)			else				return new jQuery( c ).find( a );		}		return this.setArray(			// HANDLE: $(array)			a.constructor == Array && a ||			// HANDLE: $(arraylike)			// Watch for when an array-like object is passed as the selector			(a.jquery || a.length && a != window && !a.nodeType && a[0] != undefined && a[0].nodeType) && jQuery.makeArray( a ) ||			// HANDLE: $(*)			[ a ] );	},	jquery: "@VERSION",	size: function() {		return this.length;	},		length: 0,	get: function( num ) {		return num == undefined ?			// Return a 'clean' array			jQuery.makeArray( this ) :			// Return just the object			this[num];	},	pushStack: function( a ) {		var ret = jQuery(a);		ret.prevObject = this;		return ret;	},	setArray: function( a ) {		this.length = 0;		[].push.apply( this, a );		return this;	},	each: function( fn, args ) {		return jQuery.each( this, fn, args );	},	index: function( obj ) {		var pos = -1;		this.each(function(i){			if ( this == obj ) pos = i;		});		return pos;	},	attr: function( key, value, type ) {		var obj = key;				// Look for the case where we're accessing a style value		if ( key.constructor == String )			if ( value == undefined )				return this.length && jQuery[ type || "attr" ]( this[0], key ) || undefined;			else {				obj = {};				obj[ key ] = value;			}				// Check to see if we're setting style values		return this.each(function(index){			// Set all the styles			for ( var prop in obj )				jQuery.attr(					type ? this.style : this,					prop, jQuery.prop(this, obj[prop], type, index, prop)				);		});	},	css: function( key, value ) {		return this.attr( key, value, "curCSS" );	},	text: function(e) {		if ( typeof e == "string" )			return this.empty().append( document.createTextNode( e ) );		var t = "";		jQuery.each( e || this, function(){			jQuery.each( this.childNodes, function(){				if ( this.nodeType != 8 )					t += this.nodeType != 1 ?						this.nodeValue : jQuery.fn.text([ this ]);			});		});		return t;	},	wrap: function() {		// The elements to wrap the target around		var a, args = arguments;		// Wrap each of the matched elements individually		return this.each(function(){			if ( !a )				a = jQuery.clean(args, this.ownerDocument);			// Clone the structure that we're using to wrap			var b = a[0].cloneNode(true);			// Insert it before the element to be wrapped			this.parentNode.insertBefore( b, this );			// Find the deepest point in the wrap structure			while ( b.firstChild )				b = b.firstChild;			// Move the matched element to within the wrap structure			b.appendChild( this );		});	},	append: function() {		return this.domManip(arguments, true, 1, function(a){			this.appendChild( a );		});	},	prepend: function() {		return this.domManip(arguments, true, -1, function(a){			this.insertBefore( a, this.firstChild );		});	},	before: function() {		return this.domManip(arguments, false, 1, function(a){			this.parentNode.insertBefore( a, this );		});	},	after: function() {		return this.domManip(arguments, false, -1, function(a){			this.parentNode.insertBefore( a, this.nextSibling );		});	},	end: function() {		return this.prevObject || jQuery([]);	},	find: function(t) {		var data = jQuery.map(this, function(a){ return jQuery.find(t,a); });		return this.pushStack( /[^+>] [^+>]/.test( t ) || t.indexOf("..") > -1 ?			jQuery.unique( data ) : data );	},	clone: function(deep) {		// Need to remove events on the element and its descendants		var $this = this.add(this.find("*"));		$this.each(function() {			this._$events = {};			for (var type in this.$events)				this._$events[type] = jQuery.extend({},this.$events[type]);		}).unbind();		// Do the clone		var r = this.pushStack( jQuery.map( this, function(a){			return a.cloneNode( deep != undefined ? deep : true );		}) );		// Add the events back to the original and its descendants		$this.each(function() {			var events = this._$events;			for (var type in events)				for (var handler in events[type])					jQuery.event.add(this, type, events[type][handler], events[type][handler].data);			this._$events = null;		});		// Return the cloned set		return r;	},	filter: function(t) {		return this.pushStack(			jQuery.isFunction( t ) &&			jQuery.grep(this, function(el, index){				return t.apply(el, [index])			}) ||			jQuery.multiFilter(t,this) );	},	not: function(t) {		return this.pushStack(			t.constructor == String &&			jQuery.multiFilter(t, this, true) ||			jQuery.grep(this, function(a) {				return ( t.constructor == Array || t.jquery )					? jQuery.inArray( a, t ) < 0					: a != t;			})		);	},	add: function(t) {		return this.pushStack( jQuery.merge(			this.get(),			t.constructor == String ?				jQuery(t).get() :				t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ?					t : [t] )		);	},	is: function(expr) {		return expr ? jQuery.multiFilter(expr,this).length > 0 : false;	},	val: function( val ) {		return val == undefined ?			( this.length ? this[0].value : null ) :			this.attr( "value", val );	},	html: function( val ) {		return val == undefined ?			( this.length ? this[0].innerHTML : null ) :			this.empty().append( val );	},	domManip: function(args, table, dir, fn){		var clone = this.length > 1, a; 		return this.each(function(){			if ( !a ) {				a = jQuery.clean(args, this.ownerDocument);				if ( dir < 0 )					a.reverse();			}			var obj = this;			if ( table && jQuery.nodeName(this, "table") && jQuery.nodeName(a[0], "tr") )				obj = this.getElementsByTagName("tbody")[0] || this.appendChild(document.createElement("tbody"));			jQuery.each( a, function(){				fn.apply( obj, [ clone ? this.cloneNode(true) : this ] );			});		});	}};jQuery.extend = jQuery.fn.extend = function() {	// copy reference to target object	var target = arguments[0], a = 1;	// extend jQuery itself if only one argument is passed	if ( arguments.length == 1 ) {		target = this;		a = 0;	}	var prop;	while ( (prop = arguments[a++]) != null )		// Extend the base object		for ( var i in prop ) target[i] = prop[i];	// Return the modified object	return target;};jQuery.extend({	noConflict: function() {		if ( jQuery._$ )			$ = jQuery._$;		return jQuery;	},	// This may seem like some crazy code, but trust me when I say that this	// is the only cross-browser way to do this. --John	isFunction: function( fn ) {		return !!fn && typeof fn != "string" && !fn.nodeName && 			fn.constructor != Array && /function/i.test( fn + "" );	},		// check if an element is in a XML document	isXMLDoc: function(elem) {		return elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;	},	nodeName: function( elem, name ) {		return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();	},	// args is for internal usage only	each: function( obj, fn, args ) {		if ( obj.length == undefined )			for ( var i in obj )				fn.apply( obj[i], args || [i, obj[i]] );		else			for ( var i = 0, ol = obj.length; i < ol; i++ )				if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break;		return obj;	},		prop: function(elem, value, type, index, prop){			// Handle executable functions			if ( jQuery.isFunction( value ) )				value = value.call( elem, [index] );							// exclude the following css properties to add px			var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i;			// Handle passing in a number to a CSS property			return value && value.constructor == Number && type == "curCSS" && !exclude.test(prop) ?				value + "px" :				value;	},	className: {		// internal only, use addClass("class")		add: function( elem, c ){			jQuery.each( c.split(/\s+/), function(i, cur){				if ( !jQuery.className.has( elem.className, cur ) )					elem.className += ( elem.className ? " " : "" ) + cur;			});		},		// internal only, use removeClass("class")		remove: function( elem, c ){			elem.className = c != undefined ?				jQuery.grep( elem.className.split(/\s+/), function(cur){					return !jQuery.className.has( c, cur );					}).join(" ") : "";		},		// internal only, use is(".class")		has: function( t, c ) {			return jQuery.inArray( c, (t.className || t).toString().split(/\s+/) ) > -1;		}	},	swap: function(e,o,f) {		for ( var i in o ) {			e.style["old"+i] = e.style[i];			e.style[i] = o[i];		}		f.apply( e, [] );		for ( var i in o )			e.style[i] = e.style["old"+i];	},	css: function(e,p) {		if ( p == "height" || p == "width" ) {			var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"];			jQuery.each( d, function(){				old["padding" + this] = 0;				old["border" + this + "Width"] = 0;			});			jQuery.swap( e, old, function() {				if ( jQuery(e).is(':visible') ) {					oHeight = e.offsetHeight;					oWidth = e.offsetWidth;				} else {					e = jQuery(e.cloneNode(true))						.find(":radio").removeAttr("checked").end()						.css({							visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0"						}).appendTo(e.parentNode)[0];					var parPos = jQuery.css(e.parentNode,"position") || "static";					if ( parPos == "static" )						e.parentNode.style.position = "relative";					oHeight = e.clientHeight;					oWidth = e.clientWidth;					if ( parPos == "static" )						e.parentNode.style.position = "static";					e.parentNode.removeChild(e);				}			});			return p == "height" ? oHeight : oWidth;		}		return jQuery.curCSS( e, p );	},	curCSS: function(elem, prop, force) {		var ret;		if (prop == "opacity" && jQuery.browser.msie) {			ret = jQuery.attr(elem.style, "opacity");			return ret == "" ? "1" : ret;		}				if (prop.match(/float/i))			prop = jQuery.styleFloat;		if (!force && elem.style[prop])			ret = elem.style[prop];		else if (document.defaultView && document.defaultView.getComputedStyle) {			if (prop.match(/float/i))				prop = "float";			prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase();			var cur = document.defaultView.getComputedStyle(elem, null);			if ( cur )				ret = cur.getPropertyValue(prop);			else if ( prop == "display" )				ret = "none";			else				jQuery.swap(elem, { display: "block" }, function() {				    var c = document.defaultView.getComputedStyle(this, "");				    ret = c && c.getPropertyValue(prop) || "";				});		} else if (elem.currentStyle) {			var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});			ret = elem.currentStyle[prop] || elem.currentStyle[newProp];		}		return ret;	},		clean: function(a, doc) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -