jquery-1.3.2.min-vsdoc.js
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:203k
源码类别:

行业应用

开发平台:

JavaScript

  1. type === "=" ?
  2. value === check :
  3. type === "*=" ?
  4. value.indexOf(check) >= 0 :
  5. type === "~=" ?
  6. (" " + value + " ").indexOf(check) >= 0 :
  7. !check ?
  8. value && result !== false :
  9. type === "!=" ?
  10. value != check :
  11. type === "^=" ?
  12. value.indexOf(check) === 0 :
  13. type === "$=" ?
  14. value.substr(value.length - check.length) === check :
  15. type === "|=" ?
  16. value === check || value.substr(0, check.length + 1) === check + "-" :
  17. false;
  18. },
  19. POS: function(elem, match, i, array){
  20. var name = match[2], filter = Expr.setFilters[ name ];
  21. if ( filter ) {
  22. return filter( elem, i, match, array );
  23. }
  24. }
  25. }
  26. };
  27. var origPOS = Expr.match.POS;
  28. for ( var type in Expr.match ) {
  29. Expr.match[ type ] = RegExp( Expr.match[ type ].source + /(?![^[]*])(?![^(]*))/.source );
  30. }
  31. var makeArray = function(array, results) {
  32. array = Array.prototype.slice.call( array );
  33. if ( results ) {
  34. results.push.apply( results, array );
  35. return results;
  36. }
  37. return array;
  38. };
  39. // Perform a simple check to determine if the browser is capable of
  40. // converting a NodeList to an array using builtin methods.
  41. try {
  42. Array.prototype.slice.call( document.documentElement.childNodes );
  43. // Provide a fallback method if it does not work
  44. } catch(e){
  45. makeArray = function(array, results) {
  46. var ret = results || [];
  47. if ( toString.call(array) === "[object Array]" ) {
  48. Array.prototype.push.apply( ret, array );
  49. } else {
  50. if ( typeof array.length === "number" ) {
  51. for ( var i = 0, l = array.length; i < l; i++ ) {
  52. ret.push( array[i] );
  53. }
  54. } else {
  55. for ( var i = 0; array[i]; i++ ) {
  56. ret.push( array[i] );
  57. }
  58. }
  59. }
  60. return ret;
  61. };
  62. }
  63. var sortOrder;
  64. if ( document.documentElement.compareDocumentPosition ) {
  65. sortOrder = function( a, b ) {
  66. var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
  67. if ( ret === 0 ) {
  68. hasDuplicate = true;
  69. }
  70. return ret;
  71. };
  72. } else if ( "sourceIndex" in document.documentElement ) {
  73. sortOrder = function( a, b ) {
  74. var ret = a.sourceIndex - b.sourceIndex;
  75. if ( ret === 0 ) {
  76. hasDuplicate = true;
  77. }
  78. return ret;
  79. };
  80. } else if ( document.createRange ) {
  81. sortOrder = function( a, b ) {
  82. var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
  83. aRange.selectNode(a);
  84. aRange.collapse(true);
  85. bRange.selectNode(b);
  86. bRange.collapse(true);
  87. var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
  88. if ( ret === 0 ) {
  89. hasDuplicate = true;
  90. }
  91. return ret;
  92. };
  93. }
  94. // [vsdoc] The following function has been modified for IntelliSense.
  95. // Check to see if the browser returns elements by name when
  96. // querying by getElementById (and provide a workaround)
  97. (function(){
  98. // We're going to inject a fake input element with a specified name
  99. ////var form = document.createElement("form"),
  100. //// id = "script" + (new Date).getTime();
  101. ////form.innerHTML = "<input name='" + id + "'/>";
  102. // Inject it into the root element, check its status, and remove it quickly
  103. ////var root = document.documentElement;
  104. ////root.insertBefore( form, root.firstChild );
  105. // The workaround has to do additional checks after a getElementById
  106. // Which slows things down for other browsers (hence the branching)
  107. ////if ( !!document.getElementById( id ) ) {
  108. Expr.find.ID = function(match, context, isXML){
  109. if ( typeof context.getElementById !== "undefined" && !isXML ) {
  110. var m = context.getElementById(match[1]);
  111. return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : [];
  112. }
  113. };
  114. Expr.filter.ID = function(elem, match){
  115. var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
  116. return elem.nodeType === 1 && node && node.nodeValue === match;
  117. };
  118. ////}
  119. ////root.removeChild( form );
  120. })();
  121. // [vsdoc] The following function has been modified for IntelliSense.
  122. (function(){
  123. // Check to see if the browser returns only elements
  124. // when doing getElementsByTagName("*")
  125. // Create a fake element
  126. ////var div = document.createElement("div");
  127. ////div.appendChild( document.createComment("") );
  128. // Make sure no comments are found
  129. ////if ( div.getElementsByTagName("*").length > 0 ) {
  130. Expr.find.TAG = function(match, context){
  131. var results = context.getElementsByTagName(match[1]);
  132. // Filter out possible comments
  133. if ( match[1] === "*" ) {
  134. var tmp = [];
  135. for ( var i = 0; results[i]; i++ ) {
  136. if ( results[i].nodeType === 1 ) {
  137. tmp.push( results[i] );
  138. }
  139. }
  140. results = tmp;
  141. }
  142. return results;
  143. };
  144. ////}
  145. // Check to see if an attribute returns normalized href attributes
  146. ////div.innerHTML = "<a href='#'></a>";
  147. ////if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" &&
  148. //// div.firstChild.getAttribute("href") !== "#" ) {
  149. Expr.attrHandle.href = function(elem){
  150. return elem.getAttribute("href", 2);
  151. };
  152. ////}
  153. })();
  154. if ( document.querySelectorAll ) (function(){
  155. var oldSizzle = Sizzle, div = document.createElement("div");
  156. div.innerHTML = "<p class='TEST'></p>";
  157. // Safari can't handle uppercase or unicode characters when
  158. // in quirks mode.
  159. if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
  160. return;
  161. }
  162. Sizzle = function(query, context, extra, seed){
  163. context = context || document;
  164. // Only use querySelectorAll on non-XML documents
  165. // (ID selectors don't work in non-HTML documents)
  166. if ( !seed && context.nodeType === 9 && !isXML(context) ) {
  167. try {
  168. return makeArray( context.querySelectorAll(query), extra );
  169. } catch(e){}
  170. }
  171. return oldSizzle(query, context, extra, seed);
  172. };
  173. Sizzle.find = oldSizzle.find;
  174. Sizzle.filter = oldSizzle.filter;
  175. Sizzle.selectors = oldSizzle.selectors;
  176. Sizzle.matches = oldSizzle.matches;
  177. })();
  178. if ( document.getElementsByClassName && document.documentElement.getElementsByClassName ) (function(){
  179. var div = document.createElement("div");
  180. div.innerHTML = "<div class='test e'></div><div class='test'></div>";
  181. // Opera can't find a second classname (in 9.6)
  182. if ( div.getElementsByClassName("e").length === 0 )
  183. return;
  184. // Safari caches class attributes, doesn't catch changes (in 3.2)
  185. div.lastChild.className = "e";
  186. if ( div.getElementsByClassName("e").length === 1 )
  187. return;
  188. Expr.order.splice(1, 0, "CLASS");
  189. Expr.find.CLASS = function(match, context, isXML) {
  190. if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) {
  191. return context.getElementsByClassName(match[1]);
  192. }
  193. };
  194. })();
  195. function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
  196. var sibDir = dir == "previousSibling" && !isXML;
  197. for ( var i = 0, l = checkSet.length; i < l; i++ ) {
  198. var elem = checkSet[i];
  199. if ( elem ) {
  200. if ( sibDir && elem.nodeType === 1 ){
  201. elem.sizcache = doneName;
  202. elem.sizset = i;
  203. }
  204. elem = elem[dir];
  205. var match = false;
  206. while ( elem ) {
  207. if ( elem.sizcache === doneName ) {
  208. match = checkSet[elem.sizset];
  209. break;
  210. }
  211. if ( elem.nodeType === 1 && !isXML ){
  212. elem.sizcache = doneName;
  213. elem.sizset = i;
  214. }
  215. if ( elem.nodeName === cur ) {
  216. match = elem;
  217. break;
  218. }
  219. elem = elem[dir];
  220. }
  221. checkSet[i] = match;
  222. }
  223. }
  224. }
  225. function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
  226. var sibDir = dir == "previousSibling" && !isXML;
  227. for ( var i = 0, l = checkSet.length; i < l; i++ ) {
  228. var elem = checkSet[i];
  229. if ( elem ) {
  230. if ( sibDir && elem.nodeType === 1 ) {
  231. elem.sizcache = doneName;
  232. elem.sizset = i;
  233. }
  234. elem = elem[dir];
  235. var match = false;
  236. while ( elem ) {
  237. if ( elem.sizcache === doneName ) {
  238. match = checkSet[elem.sizset];
  239. break;
  240. }
  241. if ( elem.nodeType === 1 ) {
  242. if ( !isXML ) {
  243. elem.sizcache = doneName;
  244. elem.sizset = i;
  245. }
  246. if ( typeof cur !== "string" ) {
  247. if ( elem === cur ) {
  248. match = true;
  249. break;
  250. }
  251. } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {
  252. match = elem;
  253. break;
  254. }
  255. }
  256. elem = elem[dir];
  257. }
  258. checkSet[i] = match;
  259. }
  260. }
  261. }
  262. var contains = document.compareDocumentPosition ?  function(a, b){
  263. return a.compareDocumentPosition(b) & 16;
  264. } : function(a, b){
  265. return a !== b && (a.contains ? a.contains(b) : true);
  266. };
  267. var isXML = function(elem){
  268. return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
  269. !!elem.ownerDocument && isXML( elem.ownerDocument );
  270. };
  271. var posProcess = function(selector, context){
  272. var tmpSet = [], later = "", match,
  273. root = context.nodeType ? [context] : context;
  274. // Position selectors must be done after the filter
  275. // And so must :not(positional) so we move all PSEUDOs to the end
  276. while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
  277. later += match[0];
  278. selector = selector.replace( Expr.match.PSEUDO, "" );
  279. }
  280. selector = Expr.relative[selector] ? selector + "*" : selector;
  281. for ( var i = 0, l = root.length; i < l; i++ ) {
  282. Sizzle( selector, root[i], tmpSet );
  283. }
  284. return Sizzle.filter( later, tmpSet );
  285. };
  286. // EXPOSE
  287. jQuery.find = Sizzle;
  288. jQuery.filter = Sizzle.filter;
  289. jQuery.expr = Sizzle.selectors;
  290. jQuery.expr[":"] = jQuery.expr.filters;
  291. Sizzle.selectors.filters.hidden = function(elem){
  292. return elem.offsetWidth === 0 || elem.offsetHeight === 0;
  293. };
  294. Sizzle.selectors.filters.visible = function(elem){
  295. return elem.offsetWidth > 0 || elem.offsetHeight > 0;
  296. };
  297. Sizzle.selectors.filters.animated = function(elem){
  298. return jQuery.grep(jQuery.timers, function(fn){
  299. return elem === fn.elem;
  300. }).length;
  301. };
  302. jQuery.multiFilter = function( expr, elems, not ) {
  303. /// <summary>
  304. /// This member is internal only.
  305. /// </summary>
  306. /// <private />
  307. if ( not ) {
  308. expr = ":not(" + expr + ")";
  309. }
  310. return Sizzle.matches(expr, elems);
  311. };
  312. jQuery.dir = function( elem, dir ){
  313. /// <summary>
  314. /// This member is internal only.
  315. /// </summary>
  316. /// <private />
  317. // This member is not documented in the jQuery API: http://docs.jquery.com/Special:Search?ns0=1&search=dir
  318. var matched = [], cur = elem[dir];
  319. while ( cur && cur != document ) {
  320. if ( cur.nodeType == 1 )
  321. matched.push( cur );
  322. cur = cur[dir];
  323. }
  324. return matched;
  325. };
  326. jQuery.nth = function(cur, result, dir, elem){
  327. /// <summary>
  328. /// This member is internal only.
  329. /// </summary>
  330. /// <private />
  331. // This member is not documented in the jQuery API: http://docs.jquery.com/Special:Search?ns0=1&search=nth
  332. result = result || 1;
  333. var num = 0;
  334. for ( ; cur; cur = cur[dir] )
  335. if ( cur.nodeType == 1 && ++num == result )
  336. break;
  337. return cur;
  338. };
  339. jQuery.sibling = function(n, elem){
  340. /// <summary>
  341. /// This member is internal only.
  342. /// </summary>
  343. /// <private />
  344. // This member is not documented in the jQuery API: http://docs.jquery.com/Special:Search?ns0=1&search=nth
  345. var r = [];
  346. for ( ; n; n = n.nextSibling ) {
  347. if ( n.nodeType == 1 && n != elem )
  348. r.push( n );
  349. }
  350. return r;
  351. };
  352. return;
  353. window.Sizzle = Sizzle;
  354. })();
  355. /*
  356.  * A number of helper functions used for managing events.
  357.  * Many of the ideas behind this code originated from
  358.  * Dean Edwards' addEvent library.
  359.  */
  360. jQuery.event = {
  361. // Bind an event to an element
  362. // Original by Dean Edwards
  363. add: function(elem, types, handler, data) {
  364. /// <summary>
  365. /// This method is internal.
  366. /// </summary>
  367. /// <private />
  368. if ( elem.nodeType == 3 || elem.nodeType == 8 )
  369. return;
  370. // For whatever reason, IE has trouble passing the window object
  371. // around, causing it to be cloned in the process
  372. if ( elem.setInterval && elem != window )
  373. elem = window;
  374. // Make sure that the function being executed has a unique ID
  375. if ( !handler.guid )
  376. handler.guid = this.guid++;
  377. // if data is passed, bind to handler
  378. if ( data !== undefined ) {
  379. // Create temporary function pointer to original handler
  380. var fn = handler;
  381. // Create unique handler function, wrapped around original handler
  382. handler = this.proxy( fn );
  383. // Store data in unique handler
  384. handler.data = data;
  385. }
  386. // Init the element's event structure
  387. var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}),
  388. handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function(){
  389. // Handle the second event of a trigger and when
  390. // an event is called after a page has unloaded
  391. return typeof jQuery !== "undefined" && !jQuery.event.triggered ?
  392. jQuery.event.handle.apply(arguments.callee.elem, arguments) :
  393. undefined;
  394. });
  395. // Add elem as a property of the handle function
  396. // This is to prevent a memory leak with non-native
  397. // event in IE.
  398. handle.elem = elem;
  399. // Handle multiple events separated by a space
  400. // jQuery(...).bind("mouseover mouseout", fn);
  401. jQuery.each(types.split(/s+/), function(index, type) {
  402. // Namespaced event handlers
  403. var namespaces = type.split(".");
  404. type = namespaces.shift();
  405. handler.type = namespaces.slice().sort().join(".");
  406. // Get the current list of functions bound to this event
  407. var handlers = events[type];
  408. if ( jQuery.event.specialAll[type] )
  409. jQuery.event.specialAll[type].setup.call(elem, data, namespaces);
  410. // Init the event handler queue
  411. if (!handlers) {
  412. handlers = events[type] = {};
  413. // Check for a special event handler
  414. // Only use addEventListener/attachEvent if the special
  415. // events handler returns false
  416. if ( !jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
  417. // Bind the global event handler to the element
  418. if (elem.addEventListener)
  419. elem.addEventListener(type, handle, false);
  420. else if (elem.attachEvent)
  421. elem.attachEvent("on" + type, handle);
  422. }
  423. }
  424. // Add the function to the element's handler list
  425. handlers[handler.guid] = handler;
  426. // Keep track of which events have been used, for global triggering
  427. jQuery.event.global[type] = true;
  428. });
  429. // Nullify elem to prevent memory leaks in IE
  430. elem = null;
  431. },
  432. guid: 1,
  433. global: {},
  434. // Detach an event or set of events from an element
  435. remove: function(elem, types, handler) {
  436. /// <summary>
  437. /// This method is internal.
  438. /// </summary>
  439. /// <private />
  440. // don't do events on text and comment nodes
  441. if ( elem.nodeType == 3 || elem.nodeType == 8 )
  442. return;
  443. var events = jQuery.data(elem, "events"), ret, index;
  444. if ( events ) {
  445. // Unbind all events for the element
  446. if ( types === undefined || (typeof types === "string" && types.charAt(0) == ".") )
  447. for ( var type in events )
  448. this.remove( elem, type + (types || "") );
  449. else {
  450. // types is actually an event object here
  451. if ( types.type ) {
  452. handler = types.handler;
  453. types = types.type;
  454. }
  455. // Handle multiple events seperated by a space
  456. // jQuery(...).unbind("mouseover mouseout", fn);
  457. jQuery.each(types.split(/s+/), function(index, type){
  458. // Namespaced event handlers
  459. var namespaces = type.split(".");
  460. type = namespaces.shift();
  461. var namespace = RegExp("(^|\.)" + namespaces.slice().sort().join(".*\.") + "(\.|$)");
  462. if ( events[type] ) {
  463. // remove the given handler for the given type
  464. if ( handler )
  465. delete events[type][handler.guid];
  466. // remove all handlers for the given type
  467. else
  468. for ( var handle in events[type] )
  469. // Handle the removal of namespaced events
  470. if ( namespace.test(events[type][handle].type) )
  471. delete events[type][handle];
  472. if ( jQuery.event.specialAll[type] )
  473. jQuery.event.specialAll[type].teardown.call(elem, namespaces);
  474. // remove generic event handler if no more handlers exist
  475. for ( ret in events[type] ) break;
  476. if ( !ret ) {
  477. if ( !jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
  478. if (elem.removeEventListener)
  479. elem.removeEventListener(type, jQuery.data(elem, "handle"), false);
  480. else if (elem.detachEvent)
  481. elem.detachEvent("on" + type, jQuery.data(elem, "handle"));
  482. }
  483. ret = null;
  484. delete events[type];
  485. }
  486. }
  487. });
  488. }
  489. // Remove the expando if it's no longer used
  490. for ( ret in events ) break;
  491. if ( !ret ) {
  492. var handle = jQuery.data( elem, "handle" );
  493. if ( handle ) handle.elem = null;
  494. jQuery.removeData( elem, "events" );
  495. jQuery.removeData( elem, "handle" );
  496. }
  497. }
  498. },
  499. // bubbling is internal
  500. trigger: function( event, data, elem, bubbling ) {
  501. /// <summary>
  502. /// This method is internal.
  503. /// </summary>
  504. /// <private />
  505. // Event object or event type
  506. var type = event.type || event;
  507. if( !bubbling ){
  508. event = typeof event === "object" ?
  509. // jQuery.Event object
  510. event[expando] ? event :
  511. // Object literal
  512. jQuery.extend( jQuery.Event(type), event ) :
  513. // Just the event type (string)
  514. jQuery.Event(type);
  515. if ( type.indexOf("!") >= 0 ) {
  516. event.type = type = type.slice(0, -1);
  517. event.exclusive = true;
  518. }
  519. // Handle a global trigger
  520. if ( !elem ) {
  521. // Don't bubble custom events when global (to avoid too much overhead)
  522. event.stopPropagation();
  523. // Only trigger if we've ever bound an event for it
  524. if ( this.global[type] )
  525. jQuery.each( jQuery.cache, function(){
  526. if ( this.events && this.events[type] )
  527. jQuery.event.trigger( event, data, this.handle.elem );
  528. });
  529. }
  530. // Handle triggering a single element
  531. // don't do events on text and comment nodes
  532. if ( !elem || elem.nodeType == 3 || elem.nodeType == 8 )
  533. return undefined;
  534. // Clean up in case it is reused
  535. event.result = undefined;
  536. event.target = elem;
  537. // Clone the incoming data, if any
  538. data = jQuery.makeArray(data);
  539. data.unshift( event );
  540. }
  541. event.currentTarget = elem;
  542. // Trigger the event, it is assumed that "handle" is a function
  543. var handle = jQuery.data(elem, "handle");
  544. if ( handle )
  545. handle.apply( elem, data );
  546. // Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
  547. if ( (!elem[type] || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
  548. event.result = false;
  549. // Trigger the native events (except for clicks on links)
  550. if ( !bubbling && elem[type] && !event.isDefaultPrevented() && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
  551. this.triggered = true;
  552. try {
  553. elem[ type ]();
  554. // prevent IE from throwing an error for some hidden elements
  555. } catch (e) {}
  556. }
  557. this.triggered = false;
  558. if ( !event.isPropagationStopped() ) {
  559. var parent = elem.parentNode || elem.ownerDocument;
  560. if ( parent )
  561. jQuery.event.trigger(event, data, parent, true);
  562. }
  563. },
  564. handle: function(event) {
  565. /// <summary>
  566. /// This method is internal.
  567. /// </summary>
  568. /// <private />
  569. // returned undefined or false
  570. var all, handlers;
  571. event = arguments[0] = jQuery.event.fix( event || window.event );
  572. event.currentTarget = this;
  573. // Namespaced event handlers
  574. var namespaces = event.type.split(".");
  575. event.type = namespaces.shift();
  576. // Cache this now, all = true means, any handler
  577. all = !namespaces.length && !event.exclusive;
  578. var namespace = RegExp("(^|\.)" + namespaces.slice().sort().join(".*\.") + "(\.|$)");
  579. handlers = ( jQuery.data(this, "events") || {} )[event.type];
  580. for ( var j in handlers ) {
  581. var handler = handlers[j];
  582. // Filter the functions by class
  583. if ( all || namespace.test(handler.type) ) {
  584. // Pass in a reference to the handler function itself
  585. // So that we can later remove it
  586. event.handler = handler;
  587. event.data = handler.data;
  588. var ret = handler.apply(this, arguments);
  589. if( ret !== undefined ){
  590. event.result = ret;
  591. if ( ret === false ) {
  592. event.preventDefault();
  593. event.stopPropagation();
  594. }
  595. }
  596. if( event.isImmediatePropagationStopped() )
  597. break;
  598. }
  599. }
  600. },
  601. props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
  602. fix: function(event) {
  603. /// <summary>
  604. /// This method is internal.
  605. /// </summary>
  606. /// <private />
  607. if ( event[expando] )
  608. return event;
  609. // store a copy of the original event object
  610. // and "clone" to set read-only properties
  611. var originalEvent = event;
  612. event = jQuery.Event( originalEvent );
  613. for ( var i = this.props.length, prop; i; ){
  614. prop = this.props[ --i ];
  615. event[ prop ] = originalEvent[ prop ];
  616. }
  617. // Fix target property, if necessary
  618. if ( !event.target )
  619. event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either
  620. // check if target is a textnode (safari)
  621. if ( event.target.nodeType == 3 )
  622. event.target = event.target.parentNode;
  623. // Add relatedTarget, if necessary
  624. if ( !event.relatedTarget && event.fromElement )
  625. event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;
  626. // Calculate pageX/Y if missing and clientX/Y available
  627. if ( event.pageX == null && event.clientX != null ) {
  628. var doc = document.documentElement, body = document.body;
  629. event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0);
  630. event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0);
  631. }
  632. // Add which for key events
  633. if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )
  634. event.which = event.charCode || event.keyCode;
  635. // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
  636. if ( !event.metaKey && event.ctrlKey )
  637. event.metaKey = event.ctrlKey;
  638. // Add which for click: 1 == left; 2 == middle; 3 == right
  639. // Note: button is not normalized, so don't use it
  640. if ( !event.which && event.button )
  641. event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));
  642. return event;
  643. },
  644. proxy: function( fn, proxy ){
  645. /// <summary>
  646. /// This method is internal.
  647. /// </summary>
  648. /// <private />
  649. proxy = proxy || function(){ return fn.apply(this, arguments); };
  650. // Set the guid of unique handler to the same of original handler, so it can be removed
  651. proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
  652. // So proxy can be declared as an argument
  653. return proxy;
  654. },
  655. special: {
  656. ready: {
  657. /// <summary>
  658. /// This method is internal.
  659. /// </summary>
  660. /// <private />
  661. // Make sure the ready event is setup
  662. setup: bindReady,
  663. teardown: function() {}
  664. }
  665. },
  666. specialAll: {
  667. live: {
  668. setup: function( selector, namespaces ){
  669. jQuery.event.add( this, namespaces[0], liveHandler );
  670. },
  671. teardown:  function( namespaces ){
  672. if ( namespaces.length ) {
  673. var remove = 0, name = RegExp("(^|\.)" + namespaces[0] + "(\.|$)");
  674. jQuery.each( (jQuery.data(this, "events").live || {}), function(){
  675. if ( name.test(this.type) )
  676. remove++;
  677. });
  678. if ( remove < 1 )
  679. jQuery.event.remove( this, namespaces[0], liveHandler );
  680. }
  681. }
  682. }
  683. }
  684. };
  685. jQuery.Event = function( src ){
  686. // Allow instantiation without the 'new' keyword
  687. if( !this.preventDefault )
  688. return new jQuery.Event(src);
  689. // Event object
  690. if( src && src.type ){
  691. this.originalEvent = src;
  692. this.type = src.type;
  693. // Event type
  694. }else
  695. this.type = src;
  696. // timeStamp is buggy for some events on Firefox(#3843)
  697. // So we won't rely on the native value
  698. this.timeStamp = now();
  699. // Mark it as fixed
  700. this[expando] = true;
  701. };
  702. function returnFalse(){
  703. return false;
  704. }
  705. function returnTrue(){
  706. return true;
  707. }
  708. // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
  709. // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
  710. jQuery.Event.prototype = {
  711. preventDefault: function() {
  712. this.isDefaultPrevented = returnTrue;
  713. var e = this.originalEvent;
  714. if( !e )
  715. return;
  716. // if preventDefault exists run it on the original event
  717. if (e.preventDefault)
  718. e.preventDefault();
  719. // otherwise set the returnValue property of the original event to false (IE)
  720. e.returnValue = false;
  721. },
  722. stopPropagation: function() {
  723. this.isPropagationStopped = returnTrue;
  724. var e = this.originalEvent;
  725. if( !e )
  726. return;
  727. // if stopPropagation exists run it on the original event
  728. if (e.stopPropagation)
  729. e.stopPropagation();
  730. // otherwise set the cancelBubble property of the original event to true (IE)
  731. e.cancelBubble = true;
  732. },
  733. stopImmediatePropagation:function(){
  734. this.isImmediatePropagationStopped = returnTrue;
  735. this.stopPropagation();
  736. },
  737. isDefaultPrevented: returnFalse,
  738. isPropagationStopped: returnFalse,
  739. isImmediatePropagationStopped: returnFalse
  740. };
  741. // Checks if an event happened on an element within another element
  742. // Used in jQuery.event.special.mouseenter and mouseleave handlers
  743. var withinElement = function(event) {
  744. // Check if mouse(over|out) are still within the same parent element
  745. var parent = event.relatedTarget;
  746. // Traverse up the tree
  747. while ( parent && parent != this )
  748. try { parent = parent.parentNode; }
  749. catch(e) { parent = this; }
  750. if( parent != this ){
  751. // set the correct event type
  752. event.type = event.data;
  753. // handle event if we actually just moused on to a non sub-element
  754. jQuery.event.handle.apply( this, arguments );
  755. }
  756. };
  757. jQuery.each({
  758. mouseover: 'mouseenter',
  759. mouseout: 'mouseleave'
  760. }, function( orig, fix ){
  761. jQuery.event.special[ fix ] = {
  762. setup: function(){
  763. /// <summary>
  764. /// This method is internal.
  765. /// </summary>
  766. /// <private />
  767. jQuery.event.add( this, orig, withinElement, fix );
  768. },
  769. teardown: function(){
  770. /// <summary>
  771. /// This method is internal.
  772. /// </summary>
  773. /// <private />
  774. jQuery.event.remove( this, orig, withinElement );
  775. }
  776. };
  777. });
  778. jQuery.fn.extend({
  779. bind: function( type, data, fn ) {
  780. /// <summary>
  781. /// 为每一个匹配元素的特定事件(像click)绑定一个事件处理器函数。
  782. /// 这个事件处理函数会接收到一个事件对象,可以通过它来阻止(浏览器)默认的行为。
  783. /// 如果既想取消默认的行为,又想阻止事件起泡,这个事件处理函数必须返回false。多数情况下,可以把事件处理器函数定义为匿名函数。
  784. /// 在不可能定义匿名函数的情况下,可以传递一个可选的数据对象作为第二个参数(而事件处理器函数则作为第三个参数)。
  785. /// </summary>
  786. /// <param name="type" type="String">一个或多个事件类型  内建事件类型值有: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  787. /// <param name="data" optional="true" type="Object"> (可选) 作为event.data属性值传递给事件对象的额外数据对象</param>
  788. /// <param name="fn" type="Function">绑定到每个匹配元素的事件上面的处理函数。回调函数( eventObject )等对应的DOM元素。</param>
  789. return type == "unload" ? this.one(type, data, fn) : this.each(function(){
  790. jQuery.event.add( this, type, fn || data, fn && data );
  791. });
  792. },
  793. one: function( type, data, fn ) {
  794. /// <summary>
  795. /// 为每一个匹配元素的特定事件(像click)绑定一个一次性的事件处理函数。
  796. /// 在每个对象上,这个事件处理函数只会被执行一次。其他规则与bind()函数相同。
  797. /// 这个事件处理函数会接收到一个事件对象,可以通过它来阻止(浏览器)默认的行为。
  798. /// 如果既想取消默认的行为,又想阻止事件起泡,这个事件处理函数必须返回false。
  799. /// 多数情况下,可以把事件处理函数定义为匿名函数。
  800. /// 在不可能定义匿名函数的情况下,可以传递一个可选的数据对象作为第二个参数(而事件处理函数则作为第三个参数)。
  801. /// </summary>
  802. /// <param name="type" type="String">一个或多个事件类型  内建事件类型的值是: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  803. /// <param name="data" optional="true" type="Object">(可选) 作为event.data属性值传递给事件对象的额外数据对象</param>
  804. /// <param name="fn" type="Function">绑定到每个匹配元素的事件上面的处理函数。回调函数( eventObject )等对应的DOM元素。</param>
  805. var one = jQuery.event.proxy( fn || data, function(event) {
  806. jQuery(this).unbind(event, one);
  807. return (fn || data).apply( this, arguments );
  808. });
  809. return this.each(function(){
  810. jQuery.event.add( this, type, one, fn && data);
  811. });
  812. },
  813. unbind: function( type, fn ) {
  814. /// <summary>
  815. /// bind()的反向操作,从每一个匹配的元素中删除绑定的事件。
  816. /// </summary>
  817. /// <param name="type" type="String">一个或多个事件类型  内建事件类型的值是: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  818. /// <param name="fn" type="Function">绑定到每个匹配元素的事件上面的处理函数。回调函数( eventObject )等对应的DOM元素。</param>
  819. return this.each(function(){
  820. jQuery.event.remove( this, type, fn );
  821. });
  822. },
  823. trigger: function( type, data ) {
  824. /// <summary>
  825. /// 在每一个匹配的元素上触发某类事件。
  826. /// 这个函数也会导致浏览器同名的默认行为的执行。比如,如果用trigger()触发一个'submit',则同样会导致浏览器提交表单。
  827. /// 如果要阻止这种默认行为,应返回false。
  828. /// 你也可以触发由bind()注册的自定义事件
  829. /// </summary>
  830. /// <param name="type" type="String">一个或多个要触发的事件类型  内建事件类型的值是: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  831. /// <param name="data" optional="true" type="Array">(可选)传递给事件处理函数的附加参数</param>
  832. /// <param name="fn" type="Function">This parameter is undocumented.</param>
  833. return this.each(function(){
  834. jQuery.event.trigger( type, data, this );
  835. });
  836. },
  837. triggerHandler: function( type, data ) {
  838. /// <summary>
  839. /// Triggers all bound event handlers on an element for a specific event type without executing the browser's default actions.
  840. /// </summary>
  841. /// <param name="type" type="String">One or more event types separated by a space.  Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  842. /// <param name="data" optional="true" type="Array">Additional data passed to the event handler as additional arguments.</param>
  843. /// <param name="fn" type="Function">This parameter is undocumented.</param>
  844. if( this[0] ){
  845. var event = jQuery.Event(type);
  846. event.preventDefault();
  847. event.stopPropagation();
  848. jQuery.event.trigger( event, data, this[0] );
  849. return event.result;
  850. }
  851. },
  852. toggle: function( fn ) {
  853. /// <summary>
  854. /// 每次点击后依次调用函数。
  855. /// 如果点击了一个匹配的元素,则触发指定的第一个函数,当再次点击同一元素时,则触发指定的第二个函数,
  856. /// 如果有更多函数,则再次触发,直到最后一个。
  857. /// 随后的每次点击都重复对这几个函数的轮番调用。
  858. /// 可以使用unbind("click")来删除。
  859. /// </summary>
  860. /// <param name="fn" type="Function">要循环执行的函数。</param>
  861. // Save reference to arguments for access in closure
  862. var args = arguments, i = 1;
  863. // link all the functions, so any of them can unbind this click handler
  864. while( i < args.length )
  865. jQuery.event.proxy( fn, args[i++] );
  866. return this.click( jQuery.event.proxy( fn, function(event) {
  867. // Figure out which function to execute
  868. this.lastToggle = ( this.lastToggle || 0 ) % i;
  869. // Make sure that clicks stop
  870. event.preventDefault();
  871. // and execute the function
  872. return args[ this.lastToggle++ ].apply( this, arguments ) || false;
  873. }));
  874. },
  875. hover: function(fnOver, fnOut) {
  876. /// <summary>
  877. /// 一个模仿悬停事件(鼠标移动到一个对象上面及移出这个对象)的方法。
  878. /// 这是一个自定义的方法,它为频繁使用的任务提供了一种“保持在其中”的状态。
  879. /// 当鼠标移动到一个匹配的元素上面时,会触发指定的第一个函数。当鼠标移出这个元素时,会触发指定的第二个函数。
  880. /// 而且,会伴随着对鼠标是否仍然处在特定元素中的检测(例如,处在div中的图像),
  881. /// 如果是,则会继续保持“悬停”状态,而不触发移出事件(修正了使用mouseout事件的一个常见错误)。
  882. /// </summary>
  883. /// <param name="fnOver" type="Function"> 鼠标移到元素上要触发的函数</param>
  884. /// <param name="fnOut" type="Function">鼠标移出元素要触发的函数</param>
  885. return this.mouseenter(fnOver).mouseleave(fnOut);
  886. },
  887. ready: function(fn) {
  888. /// <summary>
  889. /// 当DOM载入就绪可以查询及操纵时绑定一个要执行的函数。
  890. /// 这是事件模块中最重要的一个函数,因为它可以极大地提高web应用程序的响应速度。
  891. /// 简单地说,这个方法纯粹是对向window.load事件注册事件的替代方法。
  892. /// 该方法与window.load事件的区别在于window.load在网页全部加载完成时(包括图像,脚本等内容)才会执行,而本函数在网页的DOM载入就绪后即会执行。
  893. /// 通过使用这个方法,可以在DOM载入就绪能够读取并操纵时立即调用你所绑定的函数,而99.99%的JavaScript函数都需要在那一刻执行。
  894. /// 有一个参数--对jQuery函数的引用--会传递到这个ready事件处理函数中。可以给这个参数任意起一个名字,并因此可以不再担心命名冲突而放心地使用$别名。
  895. /// 请确保在 <body> 元素的onload事件中没有注册函数,否则不会触发$(document).ready()事件。
  896. /// 可以在同一个页面中无限次地使用$(document).ready()事件。其中注册的函数会按照(代码中的)先后顺序依次执行。
  897. /// </summary>
  898. /// <param name="fn" type="Function">当DOM加载完成时,要执行的函数。</param>
  899. // Attach the listeners
  900. bindReady();
  901. // If the DOM is already ready
  902. if ( jQuery.isReady )
  903. // Execute the function immediately
  904. fn.call( document, jQuery );
  905. // Otherwise, remember the function for later
  906. else
  907. // Add the function to the wait list
  908. jQuery.readyList.push( fn );
  909. return this;
  910. },
  911. live: function( type, fn ){
  912. /// <summary>
  913. /// 为所有现存及未来新建的,匹配当前选择器的元素自动绑定指定的事件处理程序。
  914. /// 如 $('button').live('click', function(){....}) 会为所有现存及将来创建的button元素绑定click事件处理程序。
  915. /// </summary>
  916. /// <param name="type" type="String">事件类型,如 'click'</param>
  917. /// <param name="fn" type="Function">事件处理函数</param>
  918. var proxy = jQuery.event.proxy( fn );
  919. proxy.guid += this.selector + type;
  920. jQuery(document).bind( liveConvert(type, this.selector), this.selector, proxy );
  921. return this;
  922. },
  923. die: function( type, fn ){
  924. /// <summary>
  925. /// live 的反向处理函数,用于解除 live 所绑定的事件。
  926. /// 你可以移除 live 注册的特定事件。
  927. /// 如果提供了 type 参数,所有被 live 绑定的指定类型的时间将会被移除。
  928. /// 如果指定了函数句柄(fn),只有指定的的句柄会被移除。
  929. /// </summary>
  930. /// <param name="type" type="String">要解除绑定的事件类型,如 'click'。</param>
  931. /// <param name="fn" type="Function">要解除绑定的事件处理函数。</param>
  932. jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
  933. return this;
  934. }
  935. });
  936. function liveHandler( event ){
  937. var check = RegExp("(^|\.)" + event.type + "(\.|$)"),
  938. stop = true,
  939. elems = [];
  940. jQuery.each(jQuery.data(this, "events").live || [], function(i, fn){
  941. if ( check.test(fn.type) ) {
  942. var elem = jQuery(event.target).closest(fn.data)[0];
  943. if ( elem )
  944. elems.push({ elem: elem, fn: fn });
  945. }
  946. });
  947. elems.sort(function(a,b) {
  948. return jQuery.data(a.elem, "closest") - jQuery.data(b.elem, "closest");
  949. });
  950. jQuery.each(elems, function(){
  951. if ( this.fn.call(this.elem, event, this.fn.data) === false )
  952. return (stop = false);
  953. });
  954. return stop;
  955. }
  956. function liveConvert(type, selector){
  957. return ["live", type, selector.replace(/./g, "`").replace(/ /g, "|")].join(".");
  958. }
  959. jQuery.extend({
  960. isReady: false,
  961. readyList: [],
  962. // Handle when the DOM is ready
  963. ready: function() {
  964. /// <summary>
  965. /// This method is internal.
  966. /// </summary>
  967. /// <private />
  968. // Make sure that the DOM is not already loaded
  969. if ( !jQuery.isReady ) {
  970. // Remember that the DOM is ready
  971. jQuery.isReady = true;
  972. // If there are functions bound, to execute
  973. if ( jQuery.readyList ) {
  974. // Execute all of them
  975. jQuery.each( jQuery.readyList, function(){
  976. this.call( document, jQuery );
  977. });
  978. // Reset the list of functions
  979. jQuery.readyList = null;
  980. }
  981. // Trigger any bound ready events
  982. jQuery(document).triggerHandler("ready");
  983. }
  984. }
  985. });
  986. var readyBound = false;
  987. function bindReady(){
  988. if ( readyBound ) return;
  989. readyBound = true;
  990. // Mozilla, Opera and webkit nightlies currently support this event
  991. if ( document.addEventListener ) {
  992. // Use the handy event callback
  993. document.addEventListener( "DOMContentLoaded", function(){
  994. document.removeEventListener( "DOMContentLoaded", arguments.callee, false );
  995. jQuery.ready();
  996. }, false );
  997. // If IE event model is used
  998. } else if ( document.attachEvent ) {
  999. // ensure firing before onload,
  1000. // maybe late but safe also for iframes
  1001. document.attachEvent("onreadystatechange", function(){
  1002. if ( document.readyState === "complete" ) {
  1003. document.detachEvent( "onreadystatechange", arguments.callee );
  1004. jQuery.ready();
  1005. }
  1006. });
  1007. // If IE and not an iframe
  1008. // continually check to see if the document is ready
  1009. if ( document.documentElement.doScroll && window == window.top ) (function(){
  1010. if ( jQuery.isReady ) return;
  1011. try {
  1012. // If IE is used, use the trick by Diego Perini
  1013. // http://javascript.nwbox.com/IEContentLoaded/
  1014. document.documentElement.doScroll("left");
  1015. } catch( error ) {
  1016. setTimeout( arguments.callee, 0 );
  1017. return;
  1018. }
  1019. // and execute any waiting functions
  1020. jQuery.ready();
  1021. })();
  1022. }
  1023. // A fallback to window.onload, that will always work
  1024. jQuery.event.add( window, "load", jQuery.ready );
  1025. }
  1026. // [vsdoc] The following section has been denormalized from original sources for IntelliSense.
  1027. jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
  1028. "mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave," +
  1029. "change,select,submit,keydown,keypress,keyup,error").split(","), function(i, name){
  1030. // Handle event binding
  1031. jQuery.fn[name] = function(fn){
  1032. return fn ? this.bind(name, fn) : this.trigger(name);
  1033. };
  1034. });
  1035. jQuery.fn["blur"] = function(fn) {
  1036. /// <summary>
  1037. /// 1: blur() - 触发每一个匹配元素的blur事件。这个函数会调用执行绑定到blur事件的所有函数,包括浏览器的默认行为。
  1038. /// 可以通过返回false来防止触发浏览器的默认行为。blur事件会在元素失去焦点的时候触发,既可以是鼠标行为,也可以是按tab键离开的
  1039. /// 2: blur(fn) - 在每一个匹配元素的blur事件中绑定一个处理函数。blur事件会在元素失去焦点的时候触发,既可以是鼠标行为,也可以是按tab键离开的
  1040. /// </summary>
  1041. /// <param name="fn" type="Function">要执行的函数</param>
  1042. /// <returns type="jQuery" />
  1043. return fn ? this.bind("blur", fn) : this.trigger(name);
  1044. };
  1045. jQuery.fn["focus"] = function(fn) {
  1046. /// <summary>
  1047. /// 1: focus() - 触发每一个匹配元素的focus事件。这将触发所有绑定的focus函数,注意,某些对象不支持focus方法。
  1048. /// 2: focus(fn) - 在每一个匹配元素的focus事件中绑定一个处理函数。focus事件可以通过鼠标点击或者键盘上的TAB导航触发
  1049. /// </summary>
  1050. /// <param name="fn" type="Function">要执行的函数</param>
  1051. /// <returns type="jQuery" />
  1052. return fn ? this.bind("focus", fn) : this.trigger(name);
  1053. };
  1054. jQuery.fn["load"] = function(fn) {
  1055. /// <summary>
  1056. /// 1: load() - 触发每一个匹配元素的laod事件。
  1057. /// 2: load(fn) - 在每一个匹配元素的load事件中绑定一个处理函数。
  1058. /// 如果绑定给window对象,则会在所有内容加载后触发,包括窗口,框架,对象和图像。如果绑定在元素上,则当元素的内容加载完毕后触发。
  1059. /// 注意,只有当在这个元素完全加载完之前绑定load的处理函数,才会在他加载完后触发。如果之后再绑定就永远不会触发了。
  1060. /// 所以不要在$(document).ready()里绑定load事件,因为jQuery会在所有DOM加载完成后再绑定load事件。
  1061. /// </summary>
  1062. /// <param name="fn" type="Function">要执行的函数</param>
  1063. /// <returns type="jQuery" />
  1064. return fn ? this.bind("load", fn) : this.trigger(name);
  1065. };
  1066. jQuery.fn["resize"] = function(fn) {
  1067. /// <summary>
  1068. /// 1: resize() - 触发每一个匹配元素的resize事件。
  1069. /// 2: resize(fn) - 在每一个匹配元素的resize事件中绑定一个处理函数。 当文档窗口改变大小时触发
  1070. /// </summary>
  1071. /// <param name="fn" type="Function">要执行的函数</param>
  1072. /// <returns type="jQuery" />
  1073. return fn ? this.bind("resize", fn) : this.trigger(name);
  1074. };
  1075. jQuery.fn["scroll"] = function(fn) {
  1076. /// <summary>
  1077. /// 1: scroll() - 触发每一个匹配元素的scroll事件。
  1078. /// 2: scroll(fn) - 在每一个匹配元素的scroll事件中绑定一个处理函数。当滚动条发生变化时触发
  1079. /// </summary>
  1080. /// <param name="fn" type="Function">要执行的函数</param>
  1081. /// <returns type="jQuery" />
  1082. return fn ? this.bind("scroll", fn) : this.trigger(name);
  1083. };
  1084. jQuery.fn["unload"] = function(fn) {
  1085. /// <summary>
  1086. /// 1: unload() - 触发每一个匹配元素的unload事件。
  1087. /// 2: unload(fn) - 在每一个匹配元素的unload事件中绑定一个处理函数。页面卸载时执行
  1088. /// </summary>
  1089. /// <param name="fn" type="Function">要执行的函数</param>
  1090. /// <returns type="jQuery" />
  1091. return fn ? this.bind("unload", fn) : this.trigger(name);
  1092. };
  1093. jQuery.fn["click"] = function(fn) {
  1094. /// <summary>
  1095. /// 1: click() - 触发每一个匹配元素的click事件。
  1096. /// 单击的定义是在屏幕的同一点触发了mousedown和mouseup.几个事件触发的顺序是:mousedown mouseup click
  1097. /// 2: click(fn) - 在每一个匹配元素的click事件中绑定一个处理函数。点击事件会在你的指针设备的按钮在元素上单击时触发。
  1098. /// </summary>
  1099. /// <param name="fn" type="Function">要执行的函数</param>
  1100. /// <returns type="jQuery" />
  1101. return fn ? this.bind("click", fn) : this.trigger(name);
  1102. };
  1103. jQuery.fn["dblclick"] = function(fn) {
  1104. /// <summary>
  1105. /// 1: dblclick() - 触发每一个匹配元素的dblclick事件。
  1106. /// 这个函数会调用执行绑定到dblclick事件的所有函数,包括浏览器的默认行为。
  1107. /// 可以通过在某个绑定的函数中返回false来防止触发浏览器的默认行为。dblclick事件会在元素的同一点双击时触发。
  1108. /// 2: dblclick(fn) - 在每一个匹配元素的dblclick事件中绑定一个处理函数。
  1109. /// </summary>
  1110. /// <param name="fn" type="Function">要执行的函数</param>
  1111. /// <returns type="jQuery" />
  1112. return fn ? this.bind("dblclick", fn) : this.trigger(name);
  1113. };
  1114. jQuery.fn["mousedown"] = function(fn) {
  1115. /// <summary>
  1116. /// 在每一个匹配元素的mousedown事件中绑定一个处理函数。
  1117. /// </summary>
  1118. /// <param name="fn" type="Function">要执行的函数</param>
  1119. /// <returns type="jQuery" />
  1120. return fn ? this.bind("mousedown", fn) : this.trigger(name);
  1121. };
  1122. jQuery.fn["mouseup"] = function(fn) {
  1123. /// <summary>
  1124. /// 在每一个匹配元素的mouseup事件中绑定一个处理函数。
  1125. /// </summary>
  1126. /// <param name="fn" type="Function">要执行的函数</param>
  1127. /// <returns type="jQuery" />
  1128. return fn ? this.bind("mouseup", fn) : this.trigger(name);
  1129. };
  1130. jQuery.fn["mousemove"] = function(fn) {
  1131. /// <summary>
  1132. /// 在每一个匹配元素的mousemove事件中绑定一个处理函数。
  1133. /// </summary>
  1134. /// <param name="fn" type="Function">要执行的函数</param>
  1135. /// <returns type="jQuery" />
  1136. return fn ? this.bind("mousemove", fn) : this.trigger(name);
  1137. };
  1138. jQuery.fn["mouseover"] = function(fn) {
  1139. /// <summary>
  1140. /// 在每一个匹配元素的mouseover事件中绑定一个处理函数。
  1141. /// </summary>
  1142. /// <param name="fn" type="Function">要执行的函数</param>
  1143. /// <returns type="jQuery" />
  1144. return fn ? this.bind("mouseover", fn) : this.trigger(name);
  1145. };
  1146. jQuery.fn["mouseout"] = function(fn) {
  1147. /// <summary>
  1148. /// 在每一个匹配元素的mouseout事件中绑定一个处理函数。
  1149. /// </summary>
  1150. /// <param name="fn" type="Function">要执行的函数</param>
  1151. /// <returns type="jQuery" />
  1152. return fn ? this.bind("mouseout", fn) : this.trigger(name);
  1153. };
  1154. jQuery.fn["mouseenter"] = function(fn) {
  1155. /// <summary>
  1156. /// 在每一个匹配元素的mouseenter事件中绑定一个处理函数。
  1157. /// </summary>
  1158. /// <param name="fn" type="Function">要执行的函数</param>
  1159. /// <returns type="jQuery" />
  1160. return fn ? this.bind("mouseenter", fn) : this.trigger(name);
  1161. };
  1162. jQuery.fn["mouseleave"] = function(fn) {
  1163. /// <summary>
  1164. /// 在每一个匹配元素的mouseleave事件中绑定一个处理函数。
  1165. /// </summary>
  1166. /// <param name="fn" type="Function">要执行的函数</param>
  1167. /// <returns type="jQuery" />
  1168. return fn ? this.bind("mouseleave", fn) : this.trigger(name);
  1169. };
  1170. jQuery.fn["change"] = function(fn) {
  1171. /// <summary>
  1172. /// 1: change() - 触发每一个匹配元素的change事件。这个函数会调用执行绑定到change事件的所有函数,包括浏览器的默认行为。
  1173. /// 可以通过在某个绑定的函数中返回false来防止触发浏览器的默认行为。change事件会在元素失去焦点的时候触发,也会当其值在获得焦点后改变时触发。
  1174. /// 2: change(fn) - 在每一个匹配元素的change事件中绑定一个处理函数。
  1175. /// </summary>
  1176. /// <param name="fn" type="Function">要执行的函数</param>
  1177. /// <returns type="jQuery" />
  1178. return fn ? this.bind("change", fn) : this.trigger(name);
  1179. };
  1180. jQuery.fn["select"] = function(fn) {
  1181. /// <summary>
  1182. /// 1: select() - 触发每一个匹配元素的select事件。
  1183. ///     这个函数会调用执行绑定到select事件的所有函数,包括浏览器的默认行为。
  1184. ///     可以通过在某个绑定的函数中返回false来防止触发浏览器的默认行为。
  1185. /// 2: select(fn) - 在每一个匹配元素的select事件中绑定一个处理函数。
  1186. /// </summary>
  1187. /// <param name="fn" type="Function">要执行的函数</param>
  1188. /// <returns type="jQuery" />
  1189. return fn ? this.bind("select", fn) : this.trigger(name);
  1190. };
  1191. jQuery.fn["submit"] = function(fn) {
  1192. /// <summary>
  1193. /// 1: submit() - 触发每一个匹配元素的submit事件。
  1194. ///     这个函数会调用执行绑定到submit事件的所有函数,包括浏览器的默认行为。
  1195. ///     可以通过在某个绑定的函数中返回false来防止触发浏览器的默认行为。
  1196. /// 2: submit(fn) - 在每一个匹配元素的submit事件中绑定一个处理函数。
  1197. /// </summary>
  1198. /// <param name="fn" type="Function">要执行的函数</param>
  1199. /// <returns type="jQuery" />
  1200. return fn ? this.bind("submit", fn) : this.trigger(name);
  1201. };
  1202. jQuery.fn["keydown"] = function(fn) {
  1203. /// <summary>
  1204. /// 1: keydown() - 触发每一个匹配元素的keydown事件。
  1205. /// 2: keydown(fn) - 在每一个匹配元素的keydown事件中绑定一个处理函数。
  1206. /// </summary>
  1207. /// <param name="fn" type="Function">要执行的函数</param>
  1208. /// <returns type="jQuery" />
  1209. return fn ? this.bind("keydown", fn) : this.trigger(name);
  1210. };
  1211. jQuery.fn["keypress"] = function(fn) {
  1212. /// <summary>
  1213. /// 1: keypress() - 触发每一个匹配元素的keypress事件。
  1214. /// 2: keypress(fn) - 在每一个匹配元素的keypress事件中绑定一个处理函数。
  1215. /// </summary>
  1216. /// <param name="fn" type="Function">要执行的函数</param>
  1217. /// <returns type="jQuery" />
  1218. return fn ? this.bind("keypress", fn) : this.trigger(name);
  1219. };
  1220. jQuery.fn["keyup"] = function(fn) {
  1221. /// <summary>
  1222. /// 1: keyup() - 触发每一个匹配元素的keyup事件。
  1223. /// 2: keyup(fn) - 在每一个匹配元素的keyup事件中绑定一个处理函数。
  1224. /// </summary>
  1225. /// <param name="fn" type="Function">要执行的函数</param>
  1226. /// <returns type="jQuery" />
  1227. return fn ? this.bind("keyup", fn) : this.trigger(name);
  1228. };
  1229. jQuery.fn["error"] = function(fn) {
  1230. /// <summary>
  1231. /// 1: error() - 触发每一个匹配元素的error事件。
  1232. /// 2: error(fn) - 在每一个匹配元素的error事件中绑定一个处理函数。
  1233. /// 对于error事件,没有一个公众的标准。在大多数浏览器中,当页面的JavaScript发生错误时,window对象会触发error事件;
  1234. /// 当图像的src属性无效时,比如文件不存在或者图像数据错误时,也会触发图像对象的error事件。
  1235. /// 如果异常是由window对象抛出,事件处理函数将会被传入三个参数:(
  1236. /// 1. 描述事件的信息 ("varName is not defined", "missing operator in expression", 等等.),
  1237. /// 2. 包含错误的文档的完整URL
  1238. /// 3. 异常发生的行数。如果事件处理函数返回true,则表示事件已经被处理,浏览器将认为没有异常。)
  1239. /// </summary>
  1240. /// <param name="fn" type="Function">要执行的函数</param>
  1241. /// <returns type="jQuery" />
  1242. return fn ? this.bind("error", fn) : this.trigger(name);
  1243. };
  1244. // Prevent memory leaks in IE
  1245. // And prevent errors on refresh with events like mouseover in other browsers
  1246. // Window isn't included so as not to unbind existing unload events
  1247. jQuery( window ).bind( 'unload', function(){
  1248. for ( var id in jQuery.cache )
  1249. // Skip the window
  1250. if ( id != 1 && jQuery.cache[ id ].handle )
  1251. jQuery.event.remove( jQuery.cache[ id ].handle.elem );
  1252. });
  1253. // [vsdoc] The following function has been modified for IntelliSense.
  1254. // [vsdoc] Stubbing support properties to "false" since we simulate IE.
  1255. (function(){
  1256. jQuery.support = {};
  1257. jQuery.support = {
  1258. // IE strips leading whitespace when .innerHTML is used
  1259. leadingWhitespace: false,
  1260. // Make sure that tbody elements aren't automatically inserted
  1261. // IE will insert them into empty tables
  1262. tbody: false,
  1263. // Make sure that you can get all elements in an <object> element
  1264. // IE 7 always returns no results
  1265. objectAll: false,
  1266. // Make sure that link elements get serialized correctly by innerHTML
  1267. // This requires a wrapper element in IE
  1268. htmlSerialize: false,
  1269. // Get the style information from getAttribute
  1270. // (IE uses .cssText insted)
  1271. style: false,
  1272. // Make sure that URLs aren't manipulated
  1273. // (IE normalizes it by default)
  1274. hrefNormalized: false,
  1275. // Make sure that element opacity exists
  1276. // (IE uses filter instead)
  1277. opacity: false,
  1278. // Verify style float existence
  1279. // (IE uses styleFloat instead of cssFloat)
  1280. cssFloat: false,
  1281. // Will be defined later
  1282. scriptEval: false,
  1283. noCloneEvent: false,
  1284. boxModel: false
  1285. };
  1286. })();
  1287. // [vsdoc] The following member has been modified for IntelliSense.
  1288. var styleFloat = "styleFloat";
  1289. jQuery.props = {
  1290. "for": "htmlFor",
  1291. "class": "className",
  1292. "float": styleFloat,
  1293. cssFloat: styleFloat,
  1294. styleFloat: styleFloat,
  1295. readonly: "readOnly",
  1296. maxlength: "maxLength",
  1297. cellspacing: "cellSpacing",
  1298. rowspan: "rowSpan",
  1299. tabindex: "tabIndex"
  1300. };
  1301. jQuery.fn.extend({
  1302. // Keep a copy of the old load
  1303. _load: jQuery.fn.load,
  1304. load: function( url, params, callback ) {
  1305. /// <summary>
  1306. /// 载入远程 HTML 文件代码并插入至 DOM 中。 默认使用 GET 方式 - 传递附加参数时自动转换为 POST 方式。
  1307. /// jQuery 1.2 中,可以指定选择符,来筛选载入的 HTML 文档,DOM 中将仅插入筛选出的 HTML 代码。语法形如 "url #some > selector"。
  1308. /// </summary>
  1309. /// <param name="url" type="String">待装入 HTML 网页网址。</param>
  1310. /// <param name="params" optional="true" type="Map">(可选) 发送至服务器的 key/value 数据。</param>
  1311. /// <param name="callback" optional="true" type="Function">(可选) 载入成功时回调函数。</param>
  1312. /// <returns type="jQuery" />
  1313. if ( typeof url !== "string" )
  1314. return this._load( url );
  1315. var off = url.indexOf(" ");
  1316. if ( off >= 0 ) {
  1317. var selector = url.slice(off, url.length);
  1318. url = url.slice(0, off);
  1319. }
  1320. // Default to a GET request
  1321. var type = "GET";
  1322. // If the second parameter was provided
  1323. if ( params )
  1324. // If it's a function
  1325. if ( jQuery.isFunction( params ) ) {
  1326. // We assume that it's the callback
  1327. callback = params;
  1328. params = null;
  1329. // Otherwise, build a param string
  1330. } else if( typeof params === "object" ) {
  1331. params = jQuery.param( params );
  1332. type = "POST";
  1333. }
  1334. var self = this;
  1335. // Request the remote document
  1336. jQuery.ajax({
  1337. url: url,
  1338. type: type,
  1339. dataType: "html",
  1340. data: params,
  1341. complete: function(res, status){
  1342. // If successful, inject the HTML into all the matched elements
  1343. if ( status == "success" || status == "notmodified" )
  1344. // See if a selector was specified
  1345. self.html( selector ?
  1346. // Create a dummy div to hold the results
  1347. jQuery("<div/>")
  1348. // inject the contents of the document in, removing the scripts
  1349. // to avoid any 'Permission Denied' errors in IE
  1350. .append(res.responseText.replace(/<script(.|s)*?/script>/g, ""))
  1351. // Locate the specified elements
  1352. .find(selector) :
  1353. // If not, just inject the full result
  1354. res.responseText );
  1355. if( callback )
  1356. self.each( callback, [res.responseText, status, res] );
  1357. }
  1358. });
  1359. return this;
  1360. },
  1361. serialize: function() {
  1362. /// <summary>
  1363. /// 序列表表格内容为字符串。
  1364. /// </summary>
  1365. /// <returns type="String">序列后的结果</returns>
  1366. return jQuery.param(this.serializeArray());
  1367. },
  1368. serializeArray: function() {
  1369. /// <summary>
  1370. /// 序列化表格元素 (类似 '.serialize()' 方法) 返回 JSON 数据结构数据。
  1371. /// </summary>
  1372. /// <returns type="String">返回的JSON 数据结构数据。</returns>
  1373. return this.map(function(){
  1374. return this.elements ? jQuery.makeArray(this.elements) : this;
  1375. })
  1376. .filter(function(){
  1377. return this.name && !this.disabled &&
  1378. (this.checked || /select|textarea/i.test(this.nodeName) ||
  1379. /text|hidden|password|search/i.test(this.type));
  1380. })
  1381. .map(function(i, elem){
  1382. var val = jQuery(this).val();
  1383. return val == null ? null :
  1384. jQuery.isArray(val) ?
  1385. jQuery.map( val, function(val, i){
  1386. return {name: elem.name, value: val};
  1387. }) :
  1388. {name: elem.name, value: val};
  1389. }).get();
  1390. }
  1391. });
  1392. // [vsdoc] The following section has been denormalized from original sources for IntelliSense.
  1393. // Attach a bunch of functions for handling common AJAX events
  1394. // jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
  1395. //  jQuery.fn[o] = function(f){
  1396. //  return this.bind(o, f);
  1397. //  };
  1398. // });
  1399. jQuery.fn["ajaxStart"] = function(callback) {
  1400. /// <summary>
  1401. /// AJAX 请求开始时执行函数。Ajax 事件。
  1402. /// </summary>
  1403. /// <param name="callback" type="Function">要执行的函数</param>
  1404. /// <returns type="jQuery" />
  1405. return this.bind("ajaxStart", f);
  1406. };
  1407. jQuery.fn["ajaxStop"] = function(callback) {
  1408. /// <summary>
  1409. /// AJAX 请求结束时执行函数。Ajax 事件。
  1410. /// </summary>
  1411. /// <param name="callback" type="Function">要执行的函数</param>
  1412. /// <returns type="jQuery" />
  1413. return this.bind("ajaxStop", f);
  1414. };
  1415. jQuery.fn["ajaxComplete"] = function(callback) {
  1416. /// <summary>
  1417. /// AJAX 请求完成时执行函数。Ajax 事件。
  1418. /// </summary>
  1419. /// <param name="callback" type="Function">要执行的函数</param>
  1420. /// <returns type="jQuery" />
  1421. return this.bind("ajaxComplete", f);
  1422. };
  1423. jQuery.fn["ajaxError"] = function(callback) {
  1424. /// <summary>
  1425. /// AJAX 请求完成时执行函数。Ajax 事件。XMLHttpRequest 对象和设置作为参数传递给回调函数。
  1426. /// </summary>
  1427. /// <param name="callback" type="Function">要执行的函数</param>
  1428. /// <returns type="jQuery" />
  1429. return this.bind("ajaxError", f);
  1430. };
  1431. jQuery.fn["ajaxSuccess"] = function(callback) {
  1432. /// <summary>
  1433. /// AJAX 请求成功时执行函数。Ajax 事件。XMLHttpRequest 对象和设置作为参数传递给回调函数。
  1434. /// </summary>
  1435. /// <param name="callback" type="Function">要执行的函数</param>
  1436. /// <returns type="jQuery" />
  1437. return this.bind("ajaxSuccess", f);
  1438. };
  1439. jQuery.fn["ajaxSend"] = function(callback) {
  1440. /// <summary>
  1441. /// AJAX 请求发送前执行函数。Ajax 事件。XMLHttpRequest 对象和设置作为参数传递给回调函数。
  1442. /// </summary>
  1443. /// <param name="callback" type="Function">要执行的函数</param>
  1444. /// <returns type="jQuery" />
  1445. return this.bind("ajaxSend", f);
  1446. };
  1447. var jsc = now();
  1448. jQuery.extend({
  1449. get: function( url, data, callback, type ) {
  1450. /// <summary>
  1451. /// 通过远程 HTTP GET 请求载入信息。这是一个简单的 GET 请求功能以取代复杂 $.ajax 。
  1452. /// 请求成功时可调用回调函数。如果需要在出错时执行函数,请使用 $.ajax。
  1453. /// </summary>
  1454. /// <param name="url" type="String">待载入页面的URL地址</param>
  1455. /// <param name="data" optional="true" type="Map"> (可选) 待发送 Key/value 参数。</param>
  1456. /// <param name="callback" optional="true" type="Function"> (可选) 载入成功时回调函数。</param>
  1457. /// <param name="type" optional="true" type="String">回调函数的类型,默认有: xml, html, script, json, text, _default.</param>
  1458. /// <returns type="XMLHttpRequest" />
  1459. // shift arguments if data argument was ommited
  1460. if ( jQuery.isFunction( data ) ) {
  1461. callback = data;
  1462. data = null;
  1463. }
  1464. return jQuery.ajax({
  1465. type: "GET",
  1466. url: url,
  1467. data: data,
  1468. success: callback,
  1469. dataType: type
  1470. });
  1471. },
  1472. getScript: function( url, callback ) {
  1473. /// <summary>
  1474. /// 通过 HTTP GET 请求载入并执行一个 JavaScript 文件。
  1475. /// jQuery 1.2 版本之前,getScript 只能调用同域 JS 文件。 1.2中,您可以跨域调用 JavaScript 文件。
  1476. /// 注意:Safari 2 或更早的版本不能在全局作用域中同步执行脚本。如果通过 getScript 加入脚本,请加入延时函数。
  1477. /// </summary>
  1478. /// <param name="url" type="String">待载入 JS 文件地址。</param>
  1479. /// <param name="callback" optional="true" type="Function">(可选) 成功载入后回调函数。</param>
  1480. /// <returns type="XMLHttpRequest" />
  1481. return jQuery.get(url, null, callback, "script");
  1482. },
  1483. getJSON: function( url, data, callback ) {
  1484. /// <summary>
  1485. /// 通过 HTTP GET 请求载入 JSON 数据。
  1486. /// 在 jQuery 1.2 中,您可以通过使用JSONP 形式的回调函数来加载其他网域的JSON数据,
  1487. /// 如 "myurl?callback=?"。jQuery 将自动替换 ? 为正确的函数名,以执行回调函数。
  1488. /// 注意:此行以后的代码将在这个回调函数执行前执行。
  1489. /// </summary>
  1490. /// <param name="url" type="String">发送请求地址。</param>
  1491. /// <param name="data" optional="true" type="Map"> (可选) 待发送 Key/value 参数。</param>
  1492. /// <param name="callback" optional="true" type="Function">(可选) 载入成功时回调函数。</param>
  1493. /// <returns type="XMLHttpRequest" />
  1494. return jQuery.get(url, data, callback, "json");
  1495. },
  1496. post: function( url, data, callback, type ) {
  1497. /// <summary>
  1498. /// 通过远程 HTTP POST 请求载入信息。
  1499. /// 这是一个简单的 POST 请求功能以取代复杂 $.ajax 。请求成功时可调用回调函数。如果需要在出错时执行函数,请使用 $.ajax。
  1500. /// </summary>
  1501. /// <param name="url" type="String">发送请求地址。</param>
  1502. /// <param name="data" optional="true" type="Map"> (可选) 待发送 Key/value 参数。</param>
  1503. /// <param name="callback" optional="true" type="Function">(可选) 发送成功时回调函数。</param>
  1504. /// <param name="type" optional="true" type="String">回调函数的数据类型,默认值有: xml, html, script, json, text, _default.</param>
  1505. /// <returns type="XMLHttpRequest" />
  1506. if ( jQuery.isFunction( data ) ) {
  1507. callback = data;
  1508. data = {};
  1509. }
  1510. return jQuery.ajax({
  1511. type: "POST",
  1512. url: url,
  1513. data: data,
  1514. success: callback,
  1515. dataType: type
  1516. });
  1517. },
  1518. ajaxSetup: function( settings ) {
  1519. /// <summary>
  1520. /// 设置全局 AJAX 默认选项。
  1521. /// </summary>
  1522. /// <param name="settings" type="Options">选项设置。所有设置项均为可选设置。.</param>
  1523. jQuery.extend( jQuery.ajaxSettings, settings );
  1524. },
  1525. ajaxSettings: {
  1526. url: location.href,
  1527. global: true,
  1528. type: "GET",
  1529. contentType: "application/x-www-form-urlencoded",
  1530. processData: true,
  1531. async: true,
  1532. /*
  1533. timeout: 0,
  1534. data: null,
  1535. username: null,
  1536. password: null,
  1537. */
  1538. // Create the request object; Microsoft failed to properly
  1539. // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
  1540. // This function can be overriden by calling jQuery.ajaxSetup
  1541. xhr:function(){
  1542. return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
  1543. },
  1544. accepts: {
  1545. xml: "application/xml, text/xml",
  1546. html: "text/html",
  1547. script: "text/javascript, application/javascript",
  1548. json: "application/json, text/javascript",
  1549. text: "text/plain",
  1550. _default: "*/*"
  1551. }
  1552. },
  1553. // Last-Modified header cache for next request
  1554. lastModified: {},
  1555. ajax: function( s ) {
  1556. /// <summary>
  1557. /// 使用HTTP请求载入一个远端页面。
  1558. /// </summary>
  1559. /// <private />
  1560. // Extend the settings, but re-extend 's' so that it can be
  1561. // checked again later (in the test suite, specifically)
  1562. s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
  1563. var jsonp, jsre = /=?(&|$)/g, status, data,
  1564. type = s.type.toUpperCase();
  1565. // convert data if not already a string
  1566. if ( s.data && s.processData && typeof s.data !== "string" )
  1567. s.data = jQuery.param(s.data);
  1568. // Handle JSONP Parameter Callbacks
  1569. if ( s.dataType == "jsonp" ) {
  1570. if ( type == "GET" ) {
  1571. if ( !s.url.match(jsre) )
  1572. s.url += (s.url.match(/?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
  1573. } else if ( !s.data || !s.data.match(jsre) )
  1574. s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
  1575. s.dataType = "json";
  1576. }
  1577. // Build temporary JSONP function
  1578. if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
  1579. jsonp = "jsonp" + jsc++;
  1580. // Replace the =? sequence both in the query string and the data
  1581. if ( s.data )
  1582. s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
  1583. s.url = s.url.replace(jsre, "=" + jsonp + "$1");
  1584. // We need to make sure
  1585. // that a JSONP style response is executed properly
  1586. s.dataType = "script";
  1587. // Handle JSONP-style loading
  1588. window[ jsonp ] = function(tmp){
  1589. data = tmp;
  1590. success();
  1591. complete();
  1592. // Garbage collect
  1593. window[ jsonp ] = undefined;
  1594. try{ delete window[ jsonp ]; } catch(e){}
  1595. if ( head )
  1596. head.removeChild( script );
  1597. };
  1598. }
  1599. if ( s.dataType == "script" && s.cache == null )
  1600. s.cache = false;
  1601. if ( s.cache === false && type == "GET" ) {
  1602. var ts = now();
  1603. // try replacing _= if it is there
  1604. var ret = s.url.replace(/(?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
  1605. // if nothing was replaced, add timestamp to the end
  1606. s.url = ret + ((ret == s.url) ? (s.url.match(/?/) ? "&" : "?") + "_=" + ts : "");
  1607. }
  1608. // If data is available, append data to url for get requests
  1609. if ( s.data && type == "GET" ) {
  1610. s.url += (s.url.match(/?/) ? "&" : "?") + s.data;
  1611. // IE likes to send both get and post data, prevent this
  1612. s.data = null;
  1613. }
  1614. // Watch for a new set of requests
  1615. if ( s.global && ! jQuery.active++ )
  1616. jQuery.event.trigger( "ajaxStart" );
  1617. // Matches an absolute URL, and saves the domain
  1618. var parts = /^(w+:)?//([^/?#]+)/.exec( s.url );
  1619. // If we're requesting a remote document
  1620. // and trying to load JSON or Script with a GET
  1621. if ( s.dataType == "script" && type == "GET" && parts
  1622. && ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){
  1623. var head = document.getElementsByTagName("head")[0];
  1624. var script = document.createElement("script");
  1625. script.src = s.url;
  1626. if (s.scriptCharset)
  1627. script.charset = s.scriptCharset;
  1628. // Handle Script loading
  1629. if ( !jsonp ) {
  1630. var done = false;
  1631. // Attach handlers for all browsers
  1632. script.onload = script.onreadystatechange = function(){
  1633. if ( !done && (!this.readyState ||
  1634. this.readyState == "loaded" || this.readyState == "complete") ) {
  1635. done = true;
  1636. success();
  1637. complete();
  1638. // Handle memory leak in IE
  1639. script.onload = script.onreadystatechange = null;
  1640. head.removeChild( script );
  1641. }
  1642. };
  1643. }
  1644. head.appendChild(script);
  1645. // We handle everything using the script element injection
  1646. return undefined;
  1647. }
  1648. var requestDone = false;
  1649. // Create the request object
  1650. var xhr = s.xhr();
  1651. // Open the socket
  1652. // Passing null username, generates a login popup on Opera (#2865)
  1653. if( s.username )
  1654. xhr.open(type, s.url, s.async, s.username, s.password);
  1655. else
  1656. xhr.open(type, s.url, s.async);
  1657. // Need an extra try/catch for cross domain requests in Firefox 3
  1658. try {
  1659. // Set the correct header, if data is being sent
  1660. if ( s.data )
  1661. xhr.setRequestHeader("Content-Type", s.contentType);
  1662. // Set the If-Modified-Since header, if ifModified mode.
  1663. if ( s.ifModified )
  1664. xhr.setRequestHeader("If-Modified-Since",
  1665. jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
  1666. // Set header so the called script knows that it's an XMLHttpRequest
  1667. xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  1668. // Set the Accepts header for the server, depending on the dataType
  1669. xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
  1670. s.accepts[ s.dataType ] + ", */*" :
  1671. s.accepts._default );
  1672. } catch(e){}
  1673. // Allow custom headers/mimetypes and early abort
  1674. if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
  1675. // Handle the global AJAX counter
  1676. if ( s.global && ! --jQuery.active )
  1677. jQuery.event.trigger( "ajaxStop" );
  1678. // close opended socket
  1679. xhr.abort();
  1680. return false;
  1681. }
  1682. if ( s.global )
  1683. jQuery.event.trigger("ajaxSend", [xhr, s]);
  1684. // Wait for a response to come back
  1685. var onreadystatechange = function(isTimeout){
  1686. // The request was aborted, clear the interval and decrement jQuery.active
  1687. if (xhr.readyState == 0) {
  1688. if (ival) {
  1689. // clear poll interval
  1690. clearInterval(ival);
  1691. ival = null;
  1692. // Handle the global AJAX counter
  1693. if ( s.global && ! --jQuery.active )
  1694. jQuery.event.trigger( "ajaxStop" );
  1695. }
  1696. // The transfer is complete and the data is available, or the request timed out
  1697. } else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
  1698. requestDone = true;
  1699. // clear poll interval
  1700. if (ival) {
  1701. clearInterval(ival);
  1702. ival = null;
  1703. }
  1704. status = isTimeout == "timeout" ? "timeout" :
  1705. !jQuery.httpSuccess( xhr ) ? "error" :
  1706. s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
  1707. "success";
  1708. if ( status == "success" ) {
  1709. // Watch for, and catch, XML document parse errors
  1710. try {
  1711. // process the data (runs the xml through httpData regardless of callback)
  1712. data = jQuery.httpData( xhr, s.dataType, s );
  1713. } catch(e) {
  1714. status = "parsererror";
  1715. }
  1716. }
  1717. // Make sure that the request was successful or notmodified
  1718. if ( status == "success" ) {
  1719. // Cache Last-Modified header, if ifModified mode.
  1720. var modRes;
  1721. try {
  1722. modRes = xhr.getResponseHeader("Last-Modified");
  1723. } catch(e) {} // swallow exception thrown by FF if header is not available
  1724. if ( s.ifModified && modRes )
  1725. jQuery.lastModified[s.url] = modRes;
  1726. // JSONP handles its own success callback
  1727. if ( !jsonp )
  1728. success();
  1729. } else
  1730. jQuery.handleError(s, xhr, status);
  1731. // Fire the complete handlers
  1732. complete();
  1733. if ( isTimeout )
  1734. xhr.abort();
  1735. // Stop memory leaks
  1736. if ( s.async )
  1737. xhr = null;
  1738. }
  1739. };
  1740. if ( s.async ) {
  1741. // don't attach the handler to the request, just poll it instead
  1742. var ival = setInterval(onreadystatechange, 13);
  1743. // Timeout checker
  1744. if ( s.timeout > 0 )
  1745. setTimeout(function(){
  1746. // Check to see if the request is still happening
  1747. if ( xhr && !requestDone )
  1748. onreadystatechange( "timeout" );
  1749. }, s.timeout);
  1750. }
  1751. // Send the data
  1752. try {
  1753. xhr.send(s.data);
  1754. } catch(e) {
  1755. jQuery.handleError(s, xhr, null, e);
  1756. }
  1757. // firefox 1.5 doesn't fire statechange for sync requests
  1758. if ( !s.async )
  1759. onreadystatechange();
  1760. function success(){
  1761. // If a local callback was specified, fire it and pass it the data
  1762. if ( s.success )
  1763. s.success( data, status );
  1764. // Fire the global callback
  1765. if ( s.global )
  1766. jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
  1767. }
  1768. function complete(){
  1769. // Process result
  1770. if ( s.complete )
  1771. s.complete(xhr, status);
  1772. // The request was completed
  1773. if ( s.global )
  1774. jQuery.event.trigger( "ajaxComplete", [xhr, s] );
  1775. // Handle the global AJAX counter
  1776. if ( s.global && ! --jQuery.active )
  1777. jQuery.event.trigger( "ajaxStop" );
  1778. }
  1779. // return XMLHttpRequest to allow aborting the request etc.
  1780. return xhr;
  1781. },
  1782. handleError: function( s, xhr, status, e ) {
  1783. /// <summary>
  1784. /// This method is internal.
  1785. /// </summary>
  1786. /// <private />
  1787. // If a local callback was specified, fire it
  1788. if ( s.error ) s.error( xhr, status, e );
  1789. // Fire the global callback
  1790. if ( s.global )
  1791. jQuery.event.trigger( "ajaxError", [xhr, s, e] );
  1792. },
  1793. // Counter for holding the number of active queries
  1794. active: 0,
  1795. // Determines if an XMLHttpRequest was successful or not
  1796. httpSuccess: function( xhr ) {
  1797. /// <summary>
  1798. /// This method is internal.
  1799. /// </summary>
  1800. /// <private />
  1801. try {
  1802. // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
  1803. return !xhr.status && location.protocol == "file:" ||
  1804. ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
  1805. } catch(e){}
  1806. return false;
  1807. },
  1808. // Determines if an XMLHttpRequest returns NotModified
  1809. httpNotModified: function( xhr, url ) {
  1810. /// <summary>
  1811. /// This method is internal.
  1812. /// </summary>
  1813. /// <private />
  1814. try {
  1815. var xhrRes = xhr.getResponseHeader("Last-Modified");
  1816. // Firefox always returns 200. check Last-Modified date
  1817. return xhr.status == 304 || xhrRes == jQuery.lastModified[url];
  1818. } catch(e){}
  1819. return false;
  1820. },
  1821. httpData: function( xhr, type, s ) {
  1822. /// <summary>
  1823. /// This method is internal.
  1824. /// </summary>
  1825. /// <private />
  1826. var ct = xhr.getResponseHeader("content-type"),
  1827. xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
  1828. data = xml ? xhr.responseXML : xhr.responseText;
  1829. if ( xml && data.documentElement.tagName == "parsererror" )
  1830. throw "parsererror";
  1831. // Allow a pre-filtering function to sanitize the response
  1832. // s != null is checked to keep backwards compatibility
  1833. if( s && s.dataFilter )
  1834. data = s.dataFilter( data, type );
  1835. // The filter can actually parse the response
  1836. if( typeof data === "string" ){
  1837. // If the type is "script", eval it in global context
  1838. if ( type == "script" )
  1839. jQuery.globalEval( data );
  1840. // Get the JavaScript object, if JSON is used.
  1841. if ( type == "json" )
  1842. data = window["eval"]("(" + data + ")");
  1843. }
  1844. return data;
  1845. },
  1846. // Serialize an array of form elements or a set of
  1847. // key/values into a query string
  1848. param: function( a ) {
  1849. /// <summary>
  1850. /// This method is internal.  Use serialize() instead.
  1851. /// </summary>
  1852. /// <param name="a" type="Map">A map of key/value pairs to serialize into a string.</param>'
  1853. /// <returns type="String" />
  1854. /// <private />
  1855. var s = [ ];
  1856. function add( key, value ){
  1857. s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
  1858. };
  1859. // If an array was passed in, assume that it is an array
  1860. // of form elements
  1861. if ( jQuery.isArray(a) || a.jquery )
  1862. // Serialize the form elements
  1863. jQuery.each( a, function(){
  1864. add( this.name, this.value );
  1865. });
  1866. // Otherwise, assume that it's an object of key/value pairs
  1867. else
  1868. // Serialize the key/values
  1869. for ( var j in a )
  1870. // If the value is an array then the key names need to be repeated
  1871. if ( jQuery.isArray(a[j]) )
  1872. jQuery.each( a[j], function(){
  1873. add( j, this );
  1874. });
  1875. else
  1876. add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );
  1877. // Return the resulting serialization
  1878. return s.join("&").replace(/%20/g, "+");
  1879. }
  1880. });
  1881. var elemdisplay = {},
  1882. timerId,
  1883. fxAttrs = [
  1884. // height animations
  1885. [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ],
  1886. // width animations
  1887. [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
  1888. // opacity animations
  1889. [ "opacity" ]
  1890. ];
  1891. function genFx( type, num ){
  1892. var obj = {};
  1893. jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){
  1894. obj[ this ] = type;
  1895. });
  1896. return obj;
  1897. }
  1898. jQuery.fn.extend({
  1899. show: function(speed,callback){
  1900. /// <summary>
  1901. /// 以优雅的动画显示所有匹配的元素,并在显示完成后可选地触发一个回调函数。
  1902. /// </summary>
  1903. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  1904. /// <param name="callback" optional="true" type="Function">在动画完成时执行的函数,每个元素执行一次。</param>
  1905. /// <returns type="jQuery" />
  1906. if ( speed ) {
  1907. return this.animate( genFx("show", 3), speed, callback);
  1908. } else {
  1909. for ( var i = 0, l = this.length; i < l; i++ ){
  1910. var old = jQuery.data(this[i], "olddisplay");
  1911. this[i].style.display = old || "";
  1912. if ( jQuery.css(this[i], "display") === "none" ) {
  1913. var tagName = this[i].tagName, display;
  1914. if ( elemdisplay[ tagName ] ) {
  1915. display = elemdisplay[ tagName ];
  1916. } else {
  1917. var elem = jQuery("<" + tagName + " />").appendTo("body");
  1918. display = elem.css("display");
  1919. if ( display === "none" )
  1920. display = "block";
  1921. elem.remove();
  1922. elemdisplay[ tagName ] = display;
  1923. }
  1924. jQuery.data(this[i], "olddisplay", display);
  1925. }
  1926. }
  1927. // Set the display of the elements in a second loop
  1928. // to avoid the constant reflow
  1929. for ( var i = 0, l = this.length; i < l; i++ ){
  1930. this[i].style.display = jQuery.data(this[i], "olddisplay") || "";
  1931. }
  1932. return this;
  1933. }
  1934. },
  1935. hide: function(speed,callback){
  1936. /// <summary>
  1937. /// 以优雅的动画隐藏所有匹配的元素,并在显示完成后可选地触发一个回调函数。
  1938. /// </summary>
  1939. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000) </param>
  1940. /// <param name="callback" optional="true" type="Function">在动画完成时执行的函数,每个元素执行一次。</param>
  1941. /// <returns type="jQuery" />
  1942. if ( speed ) {
  1943. return this.animate( genFx("hide", 3), speed, callback);
  1944. } else {
  1945. for ( var i = 0, l = this.length; i < l; i++ ){
  1946. var old = jQuery.data(this[i], "olddisplay");
  1947. if ( !old && old !== "none" )
  1948. jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
  1949. }
  1950. // Set the display of the elements in a second loop
  1951. // to avoid the constant reflow
  1952. for ( var i = 0, l = this.length; i < l; i++ ){
  1953. this[i].style.display = "none";
  1954. }
  1955. return this;
  1956. }
  1957. },
  1958. // Save the old toggle function
  1959. _toggle: jQuery.fn.toggle,
  1960. toggle: function( fn, fn2 ){
  1961. /// <summary>
  1962. /// 接受两个函数,在第奇数次点击是调用函数一,第偶数次点击时调用函数二。
  1963. /// 用于需要比较复杂的状态切换的场合。
  1964. /// </summary>
  1965. /// <param name="fn" type="Function">
  1966. /// 回调函数一
  1967. /// </param>
  1968. /// <param name="fn2" type="Function">
  1969. /// 回调函数二
  1970. /// </param>
  1971. /// <returns type="jQuery" />
  1972. var bool = typeof fn === "boolean";
  1973. return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
  1974. this._toggle.apply( this, arguments ) :
  1975. fn == null || bool ?
  1976. this.each(function(){
  1977. var state = bool ? fn : jQuery(this).is(":hidden");
  1978. jQuery(this)[ state ? "show" : "hide" ]();
  1979. }) :
  1980. this.animate(genFx("toggle", 3), fn, fn2);
  1981. },
  1982. fadeTo: function(speed,to,callback){
  1983. /// <summary>
  1984. /// 通过不透明度的变化来实现所有匹配元素的淡出效果,并在动画完成后可选地触发一个回调函数。
  1985. /// 这个动画只调整元素的不透明度,也就是说所有匹配的元素的高度和宽度不会发生变化。
  1986. /// </summary>
  1987. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  1988. /// <param name="to" type="Float">要达到的目标透明度</param>
  1989. /// <param name="callback" optional="true" type="Function">(可选) 在动画完成时执行的函数</param>
  1990. /// <returns type="jQuery" />
  1991. return this.animate({opacity: to}, speed, callback);
  1992. },
  1993. animate: function( prop, speed, easing, callback ) {
  1994. /// <summary>
  1995. /// 用于创建自定义动画的函数。
  1996. /// 这个函数的关键在于指定动画形式及结果样式属性对象。这个对象中每个属性都表示一个可以变化的样式属性(如“height”、“top”或“opacity”)。
  1997. /// 注意:所有指定的属性必须用骆驼形式,比如用marginLeft代替margin-left.
  1998. /// 而每个属性的值表示这个样式属性到多少时动画结束。如果是一个数值,样式属性就会从当前的值渐变到指定的值。
  1999. /// 如果使用的是“hide”、“show”或“toggle”这样的字符串值,则会为该属性调用默认的动画形式。
  2000. /// 在 jQuery 1.2 中,你可以使用 em 和 % 单位。另外,在 jQuery 1.2 中,你可以通过在属性值前面指定 "+=" 或 "-=" 来让元素做相对运动。
  2001. /// </summary>
  2002. /// <param name="prop" type="Options">一组包含作为动画属性和终值的样式属性和及其值的集合</param>
  2003. /// <param name="speed" optional="true" type="String">(可选) 三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  2004. /// <param name="easing" optional="true" type="String"> (可选) 要使用的擦除效果的名称(需要插件支持).默认jQuery提供"linear" 和 "swing".</param>
  2005. /// <param name="callback" optional="true" type="Function"> (可选) 在动画完成时执行的函数</param>
  2006. /// <returns type="jQuery" />
  2007. var optall = jQuery.speed(speed, easing, callback);
  2008. return this[ optall.queue === false ? "each" : "queue" ](function(){
  2009. var opt = jQuery.extend({}, optall), p,
  2010. hidden = this.nodeType == 1 && jQuery(this).is(":hidden"),
  2011. self = this;
  2012. for ( p in prop ) {
  2013. if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
  2014. return opt.complete.call(this);
  2015. if ( ( p == "height" || p == "width" ) && this.style ) {
  2016. // Store display property
  2017. opt.display = jQuery.css(this, "display");
  2018. // Make sure that nothing sneaks out
  2019. opt.overflow = this.style.overflow;
  2020. }
  2021. }
  2022. if ( opt.overflow != null )
  2023. this.style.overflow = "hidden";
  2024. opt.curAnim = jQuery.extend({}, prop);
  2025. jQuery.each( prop, function(name, val){
  2026. var e = new jQuery.fx( self, opt, name );
  2027. if ( /toggle|show|hide/.test(val) )
  2028. e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
  2029. else {
  2030. var parts = val.toString().match(/^([+-]=)?([d+-.]+)(.*)$/),
  2031. start = e.cur(true) || 0;
  2032. if ( parts ) {
  2033. var end = parseFloat(parts[2]),
  2034. unit = parts[3] || "px";
  2035. // We need to compute starting value
  2036. if ( unit != "px" ) {
  2037. self.style[ name ] = (end || 1) + unit;
  2038. start = ((end || 1) / e.cur(true)) * start;
  2039. self.style[ name ] = start + unit;
  2040. }
  2041. // If a +=/-= token was provided, we're doing a relative animation
  2042. if ( parts[1] )
  2043. end = ((parts[1] == "-=" ? -1 : 1) * end) + start;
  2044. e.custom( start, end, unit );
  2045. } else
  2046. e.custom( start, val, "" );
  2047. }
  2048. });
  2049. // For JS strict compliance
  2050. return true;
  2051. });
  2052. },
  2053. stop: function(clearQueue, gotoEnd){
  2054. /// <summary>
  2055. /// 停止所有在指定元素上正在运行的动画。如果队列中有等待执行的动画,他们将被马上执行
  2056. /// </summary>
  2057. /// <param name="clearQueue" optional="true" type="Boolean">True就清楚所有被停止的动画</param>
  2058. /// <param name="gotoEnd" optional="true" type="Boolean">True就把元素的值放到动画的结尾</param>
  2059. /// <returns type="jQuery" />
  2060. var timers = jQuery.timers;
  2061. if (clearQueue)
  2062. this.queue([]);
  2063. this.each(function(){
  2064. // go in reverse order so anything added to the queue during the loop is ignored
  2065. for ( var i = timers.length - 1; i >= 0; i-- )
  2066. if ( timers[i].elem == this ) {
  2067. if (gotoEnd)
  2068. // force the next step to be the last
  2069. timers[i](true);
  2070. timers.splice(i, 1);
  2071. }
  2072. });
  2073. // start the next in the queue if the last step wasn't forced
  2074. if (!gotoEnd)
  2075. this.dequeue();
  2076. return this;
  2077. }
  2078. });
  2079. // Generate shortcuts for custom animations
  2080. // jQuery.each({
  2081. //  slideDown: genFx("show", 1),
  2082. //  slideUp: genFx("hide", 1),
  2083. //  slideToggle: genFx("toggle", 1),
  2084. //  fadeIn: { opacity: "show" },
  2085. //  fadeOut: { opacity: "hide" }
  2086. // }, function( name, props ){
  2087. //  jQuery.fn[ name ] = function( speed, callback ){
  2088. //  return this.animate( props, speed, callback );
  2089. //  };
  2090. // });
  2091. // [vsdoc] The following section has been denormalized from original sources for IntelliSense.
  2092. jQuery.fn.slideDown = function( speed, callback ){
  2093. /// <summary>
  2094. /// 调整所有匹配元素的高度来展现它们。
  2095. /// </summary>
  2096. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  2097. /// <param name="callback" optional="true" type="Function">(可选) 在动画完成时执行的函数,每个元素执行一次。</param>
  2098. /// <returns type="jQuery" />
  2099. return this.animate( genFx("show", 1), speed, callback );
  2100. };
  2101. jQuery.fn.slideUp = function( speed, callback ){
  2102. /// <summary>
  2103. /// 调整所有匹配元素的高度来隐藏它们。
  2104. /// </summary>
  2105. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  2106. /// <param name="callback" optional="true" type="Function">(可选) 在动画完成时执行的函数,每个元素执行一次。</param>
  2107. /// <returns type="jQuery" />
  2108. return this.animate( genFx("hide", 1), speed, callback );
  2109. };
  2110. jQuery.fn.slideToggle = function( speed, callback ){
  2111. /// <summary>
  2112. /// 调整所有匹配元素的高度来切换它们的显示/隐藏状态。
  2113. /// </summary>
  2114. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  2115. /// <param name="callback" optional="true" type="Function">(可选) 在动画完成时执行的函数,每个元素执行一次。</param>
  2116. /// <returns type="jQuery" />
  2117. return this.animate( genFx("toggle", 1), speed, callback );
  2118. };
  2119. jQuery.fn.fadeIn = function( speed, callback ){
  2120. /// <summary>
  2121. /// 调整所有匹配元素的透明度来实现渐入效果。
  2122. /// </summary>
  2123. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  2124. /// <param name="callback" optional="true" type="Function">(可选) 在动画完成时执行的函数,每个元素执行一次。</param>
  2125. /// <returns type="jQuery" />
  2126. return this.animate( { opacity: "show" }, speed, callback );
  2127. };
  2128. jQuery.fn.fadeOut = function( speed, callback ){
  2129. /// <summary>
  2130. /// 调整所有匹配元素的透明度来实现渐出效果。
  2131. /// </summary>
  2132. /// <param name="speed" type="String">三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)</param>
  2133. /// <param name="callback" optional="true" type="Function">(可选) 在动画完成时执行的函数,每个元素执行一次。</param>
  2134. /// <returns type="jQuery" />
  2135. return this.animate( { opacity: "hide" }, speed, callback );
  2136. };
  2137. jQuery.extend({
  2138. speed: function(speed, easing, fn) {
  2139. /// <summary>
  2140. /// This member is internal.
  2141. /// </summary>
  2142. /// <private />
  2143. var opt = typeof speed === "object" ? speed : {
  2144. complete: fn || !fn && easing ||
  2145. jQuery.isFunction( speed ) && speed,
  2146. duration: speed,
  2147. easing: fn && easing || easing && !jQuery.isFunction(easing) && easing
  2148. };
  2149. opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
  2150. jQuery.fx.speeds[opt.duration] || jQuery.fx.speeds._default;
  2151. // Queueing
  2152. opt.old = opt.complete;
  2153. opt.complete = function(){
  2154. if ( opt.queue !== false )
  2155. jQuery(this).dequeue();
  2156. if ( jQuery.isFunction( opt.old ) )
  2157. opt.old.call( this );
  2158. };
  2159. return opt;
  2160. },
  2161. easing: {
  2162. linear: function( p, n, firstNum, diff ) {
  2163.     /// <summary>
  2164.     /// This member is internal.
  2165. /// </summary>
  2166.     /// <private />
  2167. return firstNum + diff * p;
  2168. },
  2169. swing: function( p, n, firstNum, diff ) {
  2170.     /// <summary>
  2171.     /// This member is internal.
  2172. /// </summary>
  2173.     /// <private />
  2174. return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
  2175. }
  2176. },
  2177. timers: [],
  2178. fx: function( elem, options, prop ){
  2179. /// <summary>
  2180. /// This member is internal.
  2181. /// </summary>
  2182. /// <private />
  2183. this.options = options;
  2184. this.elem = elem;
  2185. this.prop = prop;
  2186. if ( !options.orig )
  2187. options.orig = {};
  2188. }
  2189. });
  2190. jQuery.fx.prototype = {
  2191. // Simple function for setting a style value
  2192. update: function(){
  2193. /// <summary>
  2194. /// This member is internal.
  2195. /// </summary>
  2196. /// <private />
  2197. if ( this.options.step )
  2198. this.options.step.call( this.elem, this.now, this );
  2199. (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
  2200. // Set display property to block for height/width animations
  2201. if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style )
  2202. this.elem.style.display = "block";
  2203. },
  2204. // Get the current size
  2205. cur: function(force){
  2206. /// <summary>
  2207. /// This member is internal.
  2208. /// </summary>
  2209. /// <private />
  2210. if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) )
  2211. return this.elem[ this.prop ];
  2212. var r = parseFloat(jQuery.css(this.elem, this.prop, force));
  2213. return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
  2214. },
  2215. // Start an animation from one number to another
  2216. custom: function(from, to, unit){
  2217. this.startTime = now();
  2218. this.start = from;
  2219. this.end = to;
  2220. this.unit = unit || this.unit || "px";
  2221. this.now = this.start;
  2222. this.pos = this.state = 0;
  2223. var self = this;
  2224. function t(gotoEnd){
  2225. return self.step(gotoEnd);
  2226. }
  2227. t.elem = this.elem;
  2228. if ( t() && jQuery.timers.push(t) && !timerId ) {
  2229. timerId = setInterval(function(){
  2230. var timers = jQuery.timers;
  2231. for ( var i = 0; i < timers.length; i++ )
  2232. if ( !timers[i]() )
  2233. timers.splice(i--, 1);
  2234. if ( !timers.length ) {
  2235. clearInterval( timerId );
  2236. timerId = undefined;
  2237. }
  2238. }, 13);
  2239. }
  2240. },
  2241. // Simple 'show' function
  2242. show: function(){
  2243. /// <summary>
  2244. /// 显示隐藏的匹配元素。这个就是 'show( speed, [callback] )' 无动画的版本。如果选择的元素是可见的,这个方法将不会改变任何东西。
  2245. /// 无论这个元素是通过hide()方法隐藏的还是在CSS里设置了display:none;,这个方法都将有效。
  2246. /// </summary>
  2247. // Remember where we started, so that we can go back to it later
  2248. this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
  2249. this.options.show = true;
  2250. // Begin the animation
  2251. // Make sure that we start at a small width/height to avoid any
  2252. // flash of content
  2253. this.custom(this.prop == "width" || this.prop == "height" ? 1 : 0, this.cur());
  2254. // Start by showing the element
  2255. jQuery(this.elem).show();
  2256. },
  2257. // Simple 'hide' function
  2258. hide: function(){
  2259. /// <summary>
  2260. /// 隐藏显示的元素这个就是 'hide( speed, [callback] )' 的无动画版。如果选择的元素是隐藏的,这个方法将不会改变任何东西。
  2261. /// </summary>
  2262. // Remember where we started, so that we can go back to it later
  2263. this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
  2264. this.options.hide = true;
  2265. // Begin the animation
  2266. this.custom(this.cur(), 0);
  2267. },
  2268. // Each step of an animation
  2269. step: function(gotoEnd){
  2270. /// <summary>
  2271. /// This method is internal.
  2272. /// </summary>
  2273. /// <private />
  2274. var t = now();
  2275. if ( gotoEnd || t >= this.options.duration + this.startTime ) {
  2276. this.now = this.end;
  2277. this.pos = this.state = 1;
  2278. this.update();
  2279. this.options.curAnim[ this.prop ] = true;
  2280. var done = true;
  2281. for ( var i in this.options.curAnim )
  2282. if ( this.options.curAnim[i] !== true )
  2283. done = false;
  2284. if ( done ) {
  2285. if ( this.options.display != null ) {
  2286. // Reset the overflow
  2287. this.elem.style.overflow = this.options.overflow;
  2288. // Reset the display
  2289. this.elem.style.display = this.options.display;
  2290. if ( jQuery.css(this.elem, "display") == "none" )
  2291. this.elem.style.display = "block";
  2292. }
  2293. // Hide the element if the "hide" operation was done
  2294. if ( this.options.hide )
  2295. jQuery(this.elem).hide();
  2296. // Reset the properties, if the item has been hidden or shown
  2297. if ( this.options.hide || this.options.show )
  2298. for ( var p in this.options.curAnim )
  2299. jQuery.attr(this.elem.style, p, this.options.orig[p]);
  2300. // Execute the complete function
  2301. this.options.complete.call( this.elem );
  2302. }
  2303. return false;
  2304. } else {
  2305. var n = t - this.startTime;
  2306. this.state = n / this.options.duration;
  2307. // Perform the easing function, defaults to swing
  2308. this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
  2309. this.now = this.start + ((this.end - this.start) * this.pos);
  2310. // Perform the next step of the animation
  2311. this.update();
  2312. }
  2313. return true;
  2314. }
  2315. };
  2316. jQuery.extend( jQuery.fx, {
  2317. speeds:{
  2318. slow: 600,
  2319.   fast: 200,
  2320.   // Default speed
  2321.   _default: 400
  2322. },
  2323. step: {
  2324. opacity: function(fx){
  2325. jQuery.attr(fx.elem.style, "opacity", fx.now);
  2326. },
  2327. _default: function(fx){
  2328. if ( fx.elem.style && fx.elem.style[ fx.prop ] != null )
  2329. fx.elem.style[ fx.prop ] = fx.now + fx.unit;
  2330. else
  2331. fx.elem[ fx.prop ] = fx.now;
  2332. }
  2333. }
  2334. });
  2335. if ( document.documentElement["getBoundingClientRect"] )
  2336. jQuery.fn.offset = function() {
  2337. /// <summary>
  2338. /// 获取第一个匹配元素相对于视口(Viewport)的相对偏移。
  2339. /// </summary>
  2340. /// <returns type="Object">包含了 'top' 和 'left'.两个属性的对象。</returns>
  2341. if ( !this[0] ) return { top: 0, left: 0 };
  2342. if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
  2343. var box  = this[0].getBoundingClientRect(), doc = this[0].ownerDocument, body = doc.body, docElem = doc.documentElement,
  2344. clientTop = docElem.clientTop || body.clientTop || 0, clientLeft = docElem.clientLeft || body.clientLeft || 0,
  2345. top  = box.top  + (self.pageYOffset || jQuery.boxModel && docElem.scrollTop  || body.scrollTop ) - clientTop,
  2346. left = box.left + (self.pageXOffset || jQuery.boxModel && docElem.scrollLeft || body.scrollLeft) - clientLeft;
  2347. return { top: top, left: left };
  2348. };
  2349. else
  2350. jQuery.fn.offset = function() {
  2351. /// <summary>
  2352. /// 获取第一个匹配元素相对于视口(Viewport)的相对偏移。
  2353. /// </summary>
  2354. /// <returns type="Object">包含了 'top' 和 'left'.两个属性的对象。</returns>
  2355. if ( !this[0] ) return { top: 0, left: 0 };
  2356. if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
  2357. jQuery.offset.initialized || jQuery.offset.initialize();
  2358. var elem = this[0], offsetParent = elem.offsetParent, prevOffsetParent = elem,
  2359. doc = elem.ownerDocument, computedStyle, docElem = doc.documentElement,
  2360. body = doc.body, defaultView = doc.defaultView,
  2361. prevComputedStyle = defaultView.getComputedStyle(elem, null),
  2362. top = elem.offsetTop, left = elem.offsetLeft;
  2363. while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {
  2364. computedStyle = defaultView.getComputedStyle(elem, null);
  2365. top -= elem.scrollTop, left -= elem.scrollLeft;
  2366. if ( elem === offsetParent ) {
  2367. top += elem.offsetTop, left += elem.offsetLeft;
  2368. if ( jQuery.offset.doesNotAddBorder && !(jQuery.offset.doesAddBorderForTableAndCells && /^t(able|d|h)$/i.test(elem.tagName)) )
  2369. top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
  2370. left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
  2371. prevOffsetParent = offsetParent, offsetParent = elem.offsetParent;
  2372. }
  2373. if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )
  2374. top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
  2375. left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
  2376. prevComputedStyle = computedStyle;
  2377. }
  2378. if ( prevComputedStyle.position === "relative" || prevComputedStyle.position === "static" )
  2379. top  += body.offsetTop,
  2380. left += body.offsetLeft;
  2381. if ( prevComputedStyle.position === "fixed" )
  2382. top  += Math.max(docElem.scrollTop, body.scrollTop),
  2383. left += Math.max(docElem.scrollLeft, body.scrollLeft);
  2384. return { top: top, left: left };
  2385. };
  2386. jQuery.offset = {
  2387. initialize: function() {
  2388. if ( this.initialized ) return;
  2389. var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
  2390. html = '<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"cellpadding="0"cellspacing="0"><tr><td></td></tr></table>';
  2391. rules = { position: 'absolute', top: 0, left: 0, margin: 0, border: 0, width: '1px', height: '1px', visibility: 'hidden' };
  2392. for ( prop in rules ) container.style[prop] = rules[prop];
  2393. container.innerHTML = html;
  2394. body.insertBefore(container, body.firstChild);
  2395. innerDiv = container.firstChild, checkDiv = innerDiv.firstChild, td = innerDiv.nextSibling.firstChild.firstChild;
  2396. this.doesNotAddBorder = (checkDiv.offsetTop !== 5);
  2397. this.doesAddBorderForTableAndCells = (td.offsetTop === 5);
  2398. innerDiv.style.overflow = 'hidden', innerDiv.style.position = 'relative';
  2399. this.subtractsBorderForOverflowNotVisible = (checkDiv.offsetTop === -5);
  2400. body.style.marginTop = '1px';
  2401. this.doesNotIncludeMarginInBodyOffset = (body.offsetTop === 0);
  2402. body.style.marginTop = bodyMarginTop;
  2403. body.removeChild(container);
  2404. this.initialized = true;
  2405. },
  2406. bodyOffset: function(body) {
  2407. jQuery.offset.initialized || jQuery.offset.initialize();
  2408. var top = body.offsetTop, left = body.offsetLeft;
  2409. if ( jQuery.offset.doesNotIncludeMarginInBodyOffset )
  2410. top  += parseInt( jQuery.curCSS(body, 'marginTop',  true), 10 ) || 0,
  2411. left += parseInt( jQuery.curCSS(body, 'marginLeft', true), 10 ) || 0;
  2412. return { top: top, left: left };
  2413. }
  2414. };
  2415. jQuery.fn.extend({
  2416. position: function() {
  2417. /// <summary>
  2418. /// 得到当前元素相对于其offsetParent的offset值
  2419. /// </summary>
  2420. /// <returns type="Object">有 'top'和'left'值的一个对象.</returns>
  2421. var left = 0, top = 0, results;
  2422. if ( this[0] ) {
  2423. // Get *real* offsetParent
  2424. var offsetParent = this.offsetParent(),
  2425. // Get correct offsets
  2426. offset       = this.offset(),
  2427. parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0 } : offsetParent.offset();
  2428. // Subtract element margins
  2429. // note: when an element has margin: auto the offsetLeft and marginLeft
  2430. // are the same in Safari causing offset.left to incorrectly be 0
  2431. offset.top  -= num( this, 'marginTop'  );
  2432. offset.left -= num( this, 'marginLeft' );
  2433. // Add offsetParent borders
  2434. parentOffset.top  += num( offsetParent, 'borderTopWidth'  );
  2435. parentOffset.left += num( offsetParent, 'borderLeftWidth' );
  2436. // Subtract the two offsets
  2437. results = {
  2438. top:  offset.top  - parentOffset.top,
  2439. left: offset.left - parentOffset.left
  2440. };
  2441. }
  2442. return results;
  2443. },
  2444. offsetParent: function() {
  2445. /// <summary>
  2446. /// This method is internal.
  2447. /// </summary>
  2448. /// <private />
  2449. var offsetParent = this[0].offsetParent || document.body;
  2450. while ( offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static') )
  2451. offsetParent = offsetParent.offsetParent;
  2452. return jQuery(offsetParent);
  2453. }
  2454. });
  2455. // Create scrollLeft and scrollTop methods
  2456. jQuery.each( ['Left'], function(i, name) {
  2457. var method = 'scroll' + name;
  2458. jQuery.fn[ method ] = function(val) {
  2459. /// <summary>
  2460. /// 获取或设置第一个匹配元素的 scrollLeft 属性。
  2461. /// </summary>
  2462. /// <param name="val" type="Number" integer="true" optional="true">要设置的 scrollLeft 属性。</param>
  2463. /// <returns type="Number" integer="true">第一个匹配元素的 scrollLeft 偏移。</returns>
  2464. if (!this[0]) return null;
  2465. return val !== undefined ?
  2466. // Set the scroll offset
  2467. this.each(function() {
  2468. this == window || this == document ?
  2469. window.scrollTo(
  2470. !i ? val : jQuery(window).scrollLeft(),
  2471.  i ? val : jQuery(window).scrollTop()
  2472. ) :
  2473. this[ method ] = val;
  2474. }) :
  2475. // Return the scroll offset
  2476. this[0] == window || this[0] == document ?
  2477. self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
  2478. jQuery.boxModel && document.documentElement[ method ] ||
  2479. document.body[ method ] :
  2480. this[0][ method ];
  2481. };
  2482. });
  2483. // Create scrollLeft and scrollTop methods
  2484. jQuery.each( ['Top'], function(i, name) {
  2485. var method = 'scroll' + name;
  2486. jQuery.fn[ method ] = function(val) {
  2487. /// <summary>
  2488. /// 获取或设置第一个匹配元素的 scrollTop 属性。
  2489. /// </summary>
  2490. /// <param name="val" type="Number" integer="true" optional="true">要设置的 scrollLeft 属性。</param>
  2491. /// <returns type="Number" integer="true">第一个匹配元素的 scrollTop 偏移。</returns>
  2492. if (!this[0]) return null;
  2493. return val !== undefined ?
  2494. // Set the scroll offset
  2495. this.each(function() {
  2496. this == window || this == document ?
  2497. window.scrollTo(
  2498. !i ? val : jQuery(window).scrollLeft(),
  2499.  i ? val : jQuery(window).scrollTop()
  2500. ) :
  2501. this[ method ] = val;
  2502. }) :
  2503. // Return the scroll offset
  2504. this[0] == window || this[0] == document ?
  2505. self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
  2506. jQuery.boxModel && document.documentElement[ method ] ||
  2507. document.body[ method ] :
  2508. this[0][ method ];
  2509. };
  2510. });
  2511. // Create innerHeight, innerWidth, outerHeight and outerWidth methods
  2512. jQuery.each([ "Height" ], function(i, name){
  2513. var tl = i ? "Left"  : "Top",  // top or left
  2514. br = i ? "Right" : "Bottom", // bottom or right
  2515. lower = name.toLowerCase();
  2516. // innerHeight and innerWidth
  2517. jQuery.fn["inner" + name] = function(){
  2518. /// <summary>
  2519. /// 返回第一个匹配元素的内部高度,包括 padding 但不包括边框。
  2520. /// </summary>
  2521. /// <returns type="Number" integer="true">第一个匹配元素的内部高度</returns>
  2522. return this[0] ?
  2523. jQuery.css( this[0], lower, false, "padding" ) :
  2524. null;
  2525. };
  2526. // outerHeight and outerWidth
  2527. jQuery.fn["outer" + name] = function(margin) {
  2528. /// <summary>
  2529. /// 返回第一个匹配元素的外部高度,包括 padding 和边框,可选 margin。
  2530. /// </summary>
  2531. /// <param name="margin" type="Boolean">高度是否包括 margin 值。</param>
  2532. /// <returns type="Number" integer="true">第一个匹配元素的外部高度。</returns>
  2533. return this[0] ?
  2534. jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
  2535. null;
  2536. };
  2537. var type = name.toLowerCase();
  2538. jQuery.fn[ type ] = function( size ) {
  2539. /// <summary>
  2540. /// 设置每个元素的CSS高度,如果没有指明单位(如 'em' 或 '%'),会自动附加 'px'。
  2541. /// 如果没有指定参数,则返回第一个匹配元素的高度。
  2542. /// </summary>
  2543. /// <returns type="jQuery" type="jQuery" />
  2544. /// <param name="size" type="String" optional="true">
  2545. /// 要设置的CSS高度,如果没有指定,则返回第一个匹配元素的高度。
  2546. /// </param>
  2547. // Get window width or height
  2548. return this[0] == window ?
  2549. // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
  2550. document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
  2551. document.body[ "client" + name ] :
  2552. // Get document width or height
  2553. this[0] == document ?
  2554. // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
  2555. Math.max(
  2556. document.documentElement["client" + name],
  2557. document.body["scroll" + name], document.documentElement["scroll" + name],
  2558. document.body["offset" + name], document.documentElement["offset" + name]
  2559. ) :
  2560. // Get or set width or height on the element
  2561. size === undefined ?
  2562. // Get width or height on the element
  2563. (this.length ? jQuery.css( this[0], type ) : null) :
  2564. // Set the width or height on the element (default to pixels if value is unitless)
  2565. this.css( type, typeof size === "string" ? size : size + "px" );
  2566. };
  2567. });
  2568. // Create innerHeight, innerWidth, outerHeight and outerWidth methods
  2569. jQuery.each([ "Width" ], function(i, name){
  2570. var tl = i ? "Left"  : "Top",  // top or left
  2571. br = i ? "Right" : "Bottom", // bottom or right
  2572. lower = name.toLowerCase();
  2573. // innerHeight and innerWidth
  2574. jQuery.fn["inner" + name] = function(){
  2575. /// <summary>
  2576. /// 返回第一个匹配元素的内部宽度,包括 padding 但不包括边框。
  2577. /// </summary>
  2578. /// <returns type="Number" integer="true">第一个匹配元素的内部宽度</returns>
  2579. return this[0] ?
  2580. jQuery.css( this[0], lower, false, "padding" ) :
  2581. null;
  2582. };
  2583. // outerHeight and outerWidth
  2584. jQuery.fn["outer" + name] = function(margin) {
  2585. /// <summary>
  2586. /// 返回第一个匹配元素的外部宽度,包括 padding 和边框,可选 margin。
  2587. /// </summary>
  2588. /// <param name="margin" type="Boolean">宽度是否包括 margin 值。</param>
  2589. /// <returns type="Number" integer="true">第一个匹配元素的外部宽度。</returns>
  2590. return this[0] ?
  2591. jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
  2592. null;
  2593. };
  2594. var type = name.toLowerCase();
  2595. jQuery.fn[ type ] = function( size ) {
  2596. /// <summary>
  2597. /// 设置每个元素的CSS宽度,如果没有指明单位(如 'em' 或 '%'),会自动附加 'px'。
  2598. /// 如果没有指定参数,则返回第一个匹配元素的宽度。
  2599. /// </summary>
  2600. /// <returns type="jQuery" type="jQuery" />
  2601. /// <param name="size" type="String" optional="true">
  2602. /// 要设置的CSS宽度,如果没有指定,则返回第一个匹配元素的宽度。
  2603. /// </param>
  2604. // Get window width or height
  2605. return this[0] == window ?
  2606. // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
  2607. document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
  2608. document.body[ "client" + name ] :
  2609. // Get document width or height
  2610. this[0] == document ?
  2611. // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
  2612. Math.max(
  2613. document.documentElement["client" + name],
  2614. document.body["scroll" + name], document.documentElement["scroll" + name],
  2615. document.body["offset" + name], document.documentElement["offset" + name]
  2616. ) :
  2617. // Get or set width or height on the element
  2618. size === undefined ?
  2619. // Get width or height on the element
  2620. (this.length ? jQuery.css( this[0], type ) : null) :
  2621. // Set the width or height on the element (default to pixels if value is unitless)
  2622. this.css( type, typeof size === "string" ? size : size + "px" );
  2623. };
  2624. });
  2625. })();