forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypes.html
600 lines (596 loc) · 32.4 KB
/
Types.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
<script>
{
"title": "Types"
}
</script>
<style>
h2 { font-size: 1.9em !important; }
h3 { font-size: 1.5em !important; }
ol ul li { font-size: 1em !important; }
ol ul { margin-left: 1.5em !important; }
</style>
<p>JavaScript provides several built-in datatypes. In addition to those, this page documents virtual types like Selectors, enhanced pseudo-types like Events and all and everything you wanted to know about Functions.
</p>
<p>You should be able to try out most of the examples below by just copying them to your browser's JavaScript Console (Chrome, Safari with Develop menu activated, IE 8+) or <a href="http://www.getfirebug.com/">Firebug</a> console (<a href="http://www.getfirefox.com">Firefox</a>).
</p>
<p>Whenever an example mentions that a type defaults to a boolean value, the result is good to know when using that type in a boolean context:
</p>
<pre><code>var x = "";
if ( x ) {
console.log( "x defaulted to true" );
} else {
console.log( "x defaulted to false" );
}
</code></pre>
<p>In this case, <code>"x defaulted to false"</code> is printed.
</p>
<p>To keep the examples short, the invert ("not") operator and double-negation are used to show a boolean context:
</p>
<pre><code data-lang="javascript">
var x = "";
!x // true
!!x // false (Double negation: Since "not (empty string)" is true, negating that makes it false)
</code></pre>
<p>On to the actual types.
</p>
<div id="toctitle"><h2>Contents</h2></div>
<ol>
<li class="toclevel-1"><a href="#String"><span class="toctext">String</span></a>
<ul>
<li class="toclevel-2"><a href="#Quoting"><span class="toctext">Quoting</span></a></li>
<li class="toclevel-2"><a href="#Built-in_Methods"><span class="toctext">Built-in Methods</span></a></li>
<li class="toclevel-2"><a href="#Length_Property"><span class="toctext">Length Property</span></a></li>
<li class="toclevel-2"><a href="#Boolean_Default"><span class="toctext">Boolean Default</span></a></li>
</ul>
</li>
<li class="toclevel-1"><a href="#Number"><span class="toctext">Number</span></a>
<ul>
<li class="toclevel-2"><a href="#Boolean_Default_2"><span class="toctext">Boolean Default</span></a></li>
<li class="toclevel-2"><a href="#Math"><span class="toctext">Math</span></a></li>
<li class="toclevel-2"><a href="#Parsing_Numbers"><span class="toctext">Parsing Numbers</span></a></li>
<li class="toclevel-2"><a href="#Numbers_to_Strings"><span class="toctext">Numbers to Strings</span></a></li>
<li class="toclevel-2"><a href="#NaN_and_Infinity"><span class="toctext">NaN and Infinity</span></a></li>
<li class="toclevel-2"><a href="#Integer"><span class="toctext">Integer</span></a></li>
<li class="toclevel-2"><a href="#Float"><span class="toctext">Float</span></a></li>
</ul>
</li>
<li class="toclevel-1"><a href="#Boolean"><span class="toctext">Boolean</span></a></li>
<li class="toclevel-1"><a href="#Object"><span class="toctext">Object</span></a>
<ul>
<li class="toclevel-2"><a href="#Dot_Notation"><span class="toctext">Dot Notation</span></a></li>
<li class="toclevel-2"><a href="#Array_Notation"><span class="toctext">Array Notation</span></a></li>
<li class="toclevel-2"><a href="#Iteration"><span class="toctext">Iteration</span></a></li>
<li class="toclevel-2"><a href="#Boolean_default_3"><span class="toctext">Boolean default</span></a></li>
<li class="toclevel-2"><a href="#Prototype"><span class="toctext">Prototype</span></a></li>
</ul>
</li>
<li class="toclevel-1"><a href="#Array"><span class="toctext">Array</span></a>
<ul>
<li class="toclevel-2"><a href="#Iteration_2"><span class="toctext">Iteration</span></a></li>
<li class="toclevel-2"><a href="#Boolean_Default_4"><span class="toctext">Boolean Default</span></a></li>
<li class="toclevel-2"><a href="#Array.3CType.3E_Notation"><span class="toctext">Array<Type> Notation</span></a></li>
</ul>
</li>
<li class="toclevel-1"><a href="#PlainObject"><span class="toctext">PlainObject</span></a></li>
<li class="toclevel-1"><a href="#Function"><span class="toctext">Function</span></a>
<ul>
<li class="toclevel-2"><a href="#Arguments"><span class="toctext">Arguments</span></a></li>
<li class="toclevel-2"><a href="#Context.2C_Call_and_Apply"><span class="toctext">Context, Call and Apply</span></a></li>
<li class="toclevel-2"><a href="#Scope"><span class="toctext">Scope</span></a></li>
<li class="toclevel-2"><a href="#Closures"><span class="toctext">Closures</span></a></li>
<li class="toclevel-2"><a href="#Proxy_Pattern"><span class="toctext">Proxy Pattern</span></a></li>
</ul>
</li>
<li class="toclevel-1"><a href="#Selector"><span class="toctext">Selector</span></a></li>
<li class="toclevel-1"><a href="#Event"><span class="toctext">Event</span></a></li>
<li class="toclevel-1"><a href="#Element"><span class="toctext">Element</span></a></li>
<li class="toclevel-1"><a href="#jQuery"><span class="toctext">jQuery</span></a></li>
<li class="toclevel-1"><a href="#XMLHttpRequest"><span class="toctext">XMLHttpRequest</span></a></li>
<li class="toclevel-1"><a href="#jqXHR"><span class="toctext">jqXHR</span></a></li>
<li class="toclevel-1"><a href="#Deferred"><span class="toctext">Deferred Object</span></a></li>
<li class="toclevel-1"><a href="#Promise"><span class="toctext">Promise Object</span></a></li>
<li class="toclevel-1"><a href="#Callbacks"><span class="toctext">Callbacks Object</span></a></li>
</ol>
<h2 id="String"> String </h2>
<pre><code data-lang="javascript">"I'm a String in JavaScript!"
'So am I!'
</code></pre>
<p>A string in JavaScript is an immutable object that contains none, one or many characters.
</p>
<p>The type of a string is "string".
</p>
<pre><code data-lang="javascript">typeof "some string"; // "string"
</code></pre>
<h3 id="Quoting"> Quoting </h3>
<p>A string can be defined using single or double quotes. You can nest single quotes inside of double quotes, and the other way round. To mix double quotes with double quotes, the nested ones have to be escaped with a backslash.
</p>
<pre><code data-lang="javascript">"You make 'me' sad."
'Holy "cranking" moses!'
"<a href=\"home\">Home</a>"
</code></pre>
<h3 id="Built-in_Methods"> Built-in Methods </h3>
<p>A string in JavaScript has some built-in methods to manipulate the string, though the result is always a new string - or something else, eg. split returns an <a href="http://docs.jquery.com/Types#Array" title="Types">array</a>.
</p>
<pre><code data-lang="javascript">"hello".charAt( 0 ) // "h"
"hello".toUpperCase() // "HELLO"
"Hello".toLowerCase() // "hello"
"hello".replace( /e|o/g, "x" ) // "hxllx"
"1,2,3".split( "," ) // [ "1", "2", "3" ]
</code></pre>
<h3 id="Length_Property"> Length Property </h3>
<p>All strings have a length property.
</p>
<pre><code data-lang="javascript">"Hello".length // 5
"".length // 0
</code></pre>
<h3 id="Boolean_Default"> Boolean Default </h3>
<p>An empty string defaults to false:
</p>
<pre><code data-lang="javascript">!"" // true
!!"" // false
!"hello" // false
!"true" // false
!new Boolean( false ) // false
</code></pre>
<h2 id="Number"> Number </h2>
<pre><code data-lang="javascript">12
3.543
</code></pre>
<p>Numbers in JavaScript are double-precision 64-bit format IEEE 754 values. They are immutable, just as <a href="#String" title="">strings</a>. All operators common in c-based languages are available to work with numbers (+, -, *, /, %, =, +=, -=, *=, /=, ++, --).
</p>
<p>The type of a number is "number".
</p>
<pre><code data-lang="javascript">typeof 12 // "number"
typeof 3.543 // "number"
</code></pre>
<h3 id="Boolean_Default_2"> Boolean Default </h3>
<p>If a number is zero, it defaults to false:
</p>
<pre><code data-lang="javascript">!0 // true
!!0 // false
!1 // false
!-1 // false
</code></pre>
<p>Due to the implementation of numbers as double-precision values, the following result is not an error:
</p>
<pre><code data-lang="javascript">0.1 + 0.2 // 0.30000000000000004
</code></pre>
<p><br />
</p>
<h3 id="Math"> Math </h3>
<p>JavaScript provides utilities to work with numbers in the Math object:
</p>
<pre><code data-lang="javascript">Math.PI // 3.141592653589793
Math.cos( Math.PI ) // -1
</code></pre>
<h3 id="Parsing_Numbers"> Parsing Numbers </h3>
<p>parseInt and parseFloat help parsing strings into numbers. Both do some implicit conversion if the base isn't specified:
</p>
<pre><code data-lang="javascript">parseInt( "123" ) = 123 // (implicit decimal)
parseInt( "010" ) = 8 // (implicit octal)
parseInt( "0xCAFE" ) = 51966 // (implicit hexadecimal)
parseInt( "010", 10 ) = 10 // (explicit decimal)
parseInt( "11", 2 ) = 3 // (explicit binary)
parseFloat( "10.10" ) = 10.1
</code></pre>
<h3 id="Numbers_to_Strings"> Numbers to Strings </h3>
<p>When appending numbers to string, the result is always a string. The operator is the same, so be careful: If you want to add numbers and then append them to a string, put parentheses around them:
</p>
<pre><code data-lang="javascript">"" + 1 + 2; // "12"
"" + ( 1 + 2 ); // "3"
"" + 0.0000001; // "1e-7"
parseInt( 0.0000001 ); // 1 (!)
</code></pre>
<p>Or you use the String class provided by javascript, which try to parse a value as string:
</p>
<pre><code data-lang="javascript">String( 1 ) + String( 2 ); // "12"
String( 1 + 2 ); // "3"
</code></pre>
<h3 id="NaN_and_Infinity"> NaN and Infinity </h3>
<p>Parsing something that isn't a number results in NaN. isNaN helps to detect those cases:
</p>
<pre><code data-lang="javascript">parseInt( "hello", 10 ) // NaN
isNaN( parseInt("hello", 10) ) // true
</code></pre>
<p>Division by zero results in Infinity:
</p>
<pre><code data-lang="javascript">1 / 0 // Infinity
</code></pre>
<p>Both NaN and Infinity are of type "number":
</p>
<pre><code data-lang="javascript">typeof NaN // "number"
typeof Infinity // "number"
</code></pre>
<p>Note that NaN compares in a strange way:
</p>
<pre><code data-lang="javascript">NaN == NaN // false (!)
</code></pre>
<p>But:
</p>
<pre><code data-lang="javascript">Infinity == Infinity // true
</code></pre>
<h3 id="Integer"> Integer </h3>
<p>An integer is a plain Number type, but whenever explicitly mentioned, indicates that a non-floating-point number is expected.
</p>
<h3 id="Float"> Float </h3>
<p>A float is a plain Number type, just as Integer, but whenever explicitly mentioned, indicates that a floating-point number is expected.
</p>
<p><br />
</p>
<h2 id="Boolean"> Boolean </h2>
<p>A boolean in JavaScript can be either true or false:
</p>
<pre><code data-lang="javascript">if ( true ) console.log( "always!" );
if ( false ) console.log( "never!" );
</code></pre>
<h2 id="Object"> Object </h2>
<p>Everything in JavaScript is an object, though some are more objective (haha). The easiest way to create an object is the object literal:
</p>
<pre><code data-lang="javascript">var x = {};
var y = {
name: "Pete",
age: 15
};
</code></pre>
<p>The type of an object is "object":
</p>
<pre><code data-lang="javascript">typeof {} // "object"
</code></pre>
<h3 id="Dot_Notation"> Dot Notation </h3>
<p>You can write and read properties of an object using the dot notation:
</p>
<pre><code data-lang="javascript">y.name // "Pete"
y.age // 15
x.name = y.name + " Pan" // "Pete Pan"
x.age = y.age + 1 // 16
</code></pre>
<h3 id="Array_Notation"> Array Notation </h3>
<p>Or you write and read properties using the array notation, which allows you to dynamically choose the property:
</p>
<pre><code data-lang="javascript">var operations = {
increase: "++",
decrease: "--"
};
var operation = "increase";
operations[ operation ] // "++"
operations[ "multiply" ] = "*"; // "*"
</code></pre>
<h3 id="Iteration"> Iteration </h3>
<p>Iterating over objects is easy with the for-in-loop:
</p>
<p><br />
</p>
<pre><code data-lang="javascript">var obj = {
name: "Pete",
age: 15
};
for( key in obj ) {
alert( "key is " + [ key ] + ", value is " + obj[ key ] );
}
</code></pre>
<p>Note that for-in-loop can be spoiled by extending Object.prototype (see <a href="http://erik.eae.net/archives/2005/06/06/22.13.54" class="external text" title="http://erik.eae.net/archives/2005/06/06/22.13.54">Object.prototype is verboten</a>) so take care when using other libraries.
</p>
<p>jQuery provides a generic <a href="http://docs.jquery.com/Utilities/jQuery.each" title="Utilities/jQuery.each">each-function</a> to iterate over properties of objects, as well as elements of arrays:
</p>
<pre><code data-lang="javascript">jQuery.each( obj, function( key, value ) {
console.log( "key", key, "value", value );
});
</code></pre>
<p>The drawback is that the callback is called in the context of each value, therefore you lose the context of your own object if applicable. More on this below at Functions.
</p>
<p><br />
</p>
<h3 id="Boolean_default_3"> Boolean default </h3>
<p>An object, no matter if it has properties or not, never defaults to false:
</p>
<pre><code data-lang="javascript">!{} // false
!!{} // true
</code></pre>
<h3 id="Prototype"> Prototype </h3>
<p>All objects have a prototype property. Whenever the interpreter looks for a property, it also checks the prototype. jQuery uses that extensively to add methods to jQuery instances.
</p>
<pre><code data-lang="javascript">var form = $("#myform");
form.clearForm; // undefined
form.fn.clearForm = function() {
return this.find( ":input" ).each(function() {
this.value = "";
}).end();
};
form.clearForm() // works for all instances of jQuery objects, because the new method was added to the prototype
</code></pre>
<p><br />
(This example needs clarification: how does it modify the prototype when the word "prototype" doesn't appear anywhere? The implication is that form.fn is simply an alias for form.prototype, but if that's the case then it should be explained. :-?)
</p>
<p>In javascript:the definitive guide 5 edition,dont add attibute to Object.prototype
</p>
<h2 id="Array"> Array </h2>
<p>Arrays in JavaScript are mutable lists with a few built-in methods. You can define arrays using the array literal:
</p>
<pre><code data-lang="javascript">var x = [];
var y = [ 1, 2, 3 ];
</code></pre>
<p>The type of an array is "object":
</p>
<pre><code data-lang="javascript">typeof []; // "object"
typeof [ 1, 2, 3 ]; // "object"
</code></pre>
<p>Reading and writing elements to an array uses the array-notation:
</p>
<pre><code data-lang="javascript">x[ 0 ] = 1;
y[ 2 ] // 3
</code></pre>
<h3 id="Iteration_2"> Iteration </h3>
<p>An array has a length property that is useful for iteration:
</p>
<pre><code data-lang="javascript">for ( var i = 0; i < a.length; i++ ) {
// Do something with a[i]
}
</code></pre>
<p>When performance is critical, reading the length property only once can help to speed things up. This should be used only when a performance bottleneck was discovered:
</p>
<pre><code data-lang="javascript">for ( var i = 0, j = a.length; i < j; i++ ) {
// Do something with a[i]
}
</code></pre>
<p>Another variation defines a variable that is filled for each iteration, removing the array-notation from the loop-body. It does not work when the array contains 0 or empty strings!
</p>
<pre><code data-lang="javascript">for ( var i = 0, item; item = a[i]; i++ ) {
// Do something with item
}
</code></pre>
<p>jQuery provides a generic <a href="http://docs.jquery.com/Utilities/jQuery.each" title="Utilities/jQuery.each">each-function</a> to iterate over element of arrays, as well as properties of objects:
</p>
<pre><code data-lang="javascript">var x = [ 1, 2, 3 ];
jQuery.each( x, function( index, value ) {
console.log( "index", index, "value", value );
});
</code></pre>
<p>The drawback is that the callback is called in the context of each value, therefore you lose the context of your own object if applicable. More on this below at Functions.
</p>
<p>The length property can also be used to add elements to the end of an array. That is equivalent to using the push-method:
</p>
<pre><code data-lang="javascript">var x = [];
x.push( 1 );
x[ x.length ] = 2;
x // [ 1, 2 ]
</code></pre>
<p>You'll see both variations a lot when looking through JavaScript library code.
</p>
<p>Other built-in methods are reverse, join, shift, unshift, pop, slice, splice and sort:
</p>
<pre><code data-lang="javascript">var x = [ 0, 3, 1, 2 ];
x.reverse() // [ 2, 1, 3, 0 ]
x.join(" – ") // "2 - 1 - 3 - 0"
x.pop() // [ 2, 1, 3 ]
x.unshift( -1 ) // [ -1, 2, 1, 3 ]
x.shift() // [ 2, 1, 3 ]
x.sort() // [ 1, 2, 3 ]
x.splice( 1, 2 ) // [ 2, 3 ]
</code></pre>
<p>Note: .unshift() method does not return a length property in Internet Explorer.
</p>
<h3 id="Boolean_Default_4"> Boolean Default </h3>
<p>An array, no matter if it has elements or not, never defaults to false:
</p>
<pre><code data-lang="javascript">![] // false
!![] // true
</code></pre>
<h3 id="Array.3CType.3E_Notation"> Array<Type> Notation </h3>
<p>In the jQuery API you'll often find the notation of Array<Type>:
</p>
<pre>dragPrevention Array<String>
</pre>
<p>This indicates that the method doesn't only expect an array as the argument, but also specifies the expected type. The notation is borrowed from Java 5's generics notation (or C++ templates).
</p>
<h2 id="PlainObject"> PlainObject </h2>
<p>The PlainObject type is a JavaScript object containing zero or more key-value pairs. The plain object is, in other words, an <code>Object</code> object. It is designated "plain" in jQuery documentation to distinguish it from other kinds of JavaScript objects: for example, <code>null</code>, user-defined arrays, and host objects such as <code>document</code>, all of which have a <code>typeof</code> value of "object." The <code><a href="/jQuery.isPlainObject">jQuery.isPlainObject()</a></code> method identifies whether the passed argument is a plain object or not, as demonstrated below:
</p>
<pre><code data-lang="javascript">
var a = [];
var d = document;
var o = {};
typeof a; // object
typeof d; // object
typeof o; // object
jQuery.isPlainObject( a ); // false
jQuery.isPlainObject( d ); // false
jQuery.isPlainObject( o ); // true
</code></pre>
<h2 id="Function"> Function </h2>
<p>A function in JavaScript can be either named or anonymous. Any function can be assigned to a variable or passed to a method, but passing member functions this way can cause them to be called in the context of another object (i.e. with a different "this" object).
</p>
<pre><code data-lang="javascript">function named() {}
var handler = function() {}
</code></pre>
<p>You see a lot of anonymous functions in jQuery code:
</p>
<pre><code data-lang="javascript">$( document ).ready(function() {});
$( "a" ).click(function() {});
$.ajax({
url: "someurl.php",
success: function() {}
});
</code></pre>
<p>The type of a function is "function".
</p>
<h3 id="Arguments"> Arguments </h3>
<p>Inside a function a special variable "arguments" is always available. It's similar to an array in that it has a length property, but it lacks the built-in methods of an array. The elements of the pseudo-array are the argument of the function call.
</p>
<pre><code data-lang="javascript">function log( x ) {
console.log( typeof x, arguments.length );
}
log(); // "undefined", 0
log( 1 ); // "number", 1
log( "1", "2", "3" ); // "string", 3
</code></pre>
<p>The arguments object also has a callee property, which refers to the function you're inside of. For instance:
</p>
<pre><code data-lang="javascript">var awesome = function() { return arguments.callee; }
awesome() == awesome // true
</code></pre>
<h3 id="Context.2C_Call_and_Apply"> Context, Call and Apply </h3>
<p>In JavaScript, the variable "this" always refers to the current context. By default, "this" refers to the window object. Within a function this context can change, depending on how the function is called.
</p>
<p>All event handlers in jQuery are called with the handling element as the context.
</p>
<pre><code data-lang="javascript">$( document ).ready(function() {
// this refers to window.document
});
$( "a" ).click(function() {
// this refers to an anchor DOM element
});
</code></pre>
<p>You can specify the context for a function call using the function-built-in methods call and apply. The difference between them is how they pass arguments. Call passes all arguments through as arguments to the function, while apply accepts an array as the arguments.
</p>
<pre><code data-lang="javascript">function scope() {
console.log( this, arguments.length );
}
scope() // window, 0
scope.call( "foobar", [ 1, 2 ] ); // "foobar", 1
scope.apply( "foobar", [ 1, 2 ] ); // "foobar", 2
</code></pre>
<h3 id="Scope"> Scope </h3>
<p>In JavaScript, all variables defined inside a function are only visible inside that function scope. Consider the following example:
</p>
<pre><code data-lang="javascript">// global
var x = 0;
(function() {
// private
var x = 1;
console.log( x ); // 1
})();
console.log( x ); // 0
</code></pre>
<p>It defines a variable <i>x</i> in the global scope, then defines an anonymous function and executes it immediately (the additional parentheses are required for immediate execution). Inside the function another variable <i>x</i> is defined with a different value. It is only visible within that function and doesn't overwrite the global variable.
</p>
<h3 id="Closures"> Closures </h3>
<p>Closures are created whenever a variable that is defined outside the current scope is accessed from within some inner scope. In the following example, the variable <i>counter</i> is visible within the create, increment, and print functions, but not outside of them.
</p>
<pre><code data-lang="javascript">function create() {
var counter = 0;
return {
increment: function() {
counter++;
},
print: function() {
console.log( counter );
}
}
}
var c = create();
c.increment();
c.print(); // 1
</code></pre>
<p>The pattern allows you to create objects with methods that operate on data that isn't visible to the outside—the very basis of object-oriented programming.
</p>
<h3 id="Proxy_Pattern"> Proxy Pattern </h3>
<p>Combining the above knowledge gives you as a JavaScript developer quite a lot of power. One way to combine that is to implement a proxy pattern in JavaScript, enabling the basics of aspect-oriented programming (AOP):
</p>
<pre><code data-lang="javascript">(function() {
// log all calls to setArray
var proxied = jQuery.fn.setArray;
jQuery.fn.setArray = function() {
console.log( this, arguments );
return proxied.apply( this, arguments );
};
})();
</code></pre>
<p>The above wraps its code in a function to hide the "proxied"-variable. It saves jQuery's setArray-method in a closure and overwrites it. The proxy then logs all calls to the method and delegates the call to the original. Using apply(this, arguments) guarantees that the caller won't be able to notice the difference between the original and the proxied method.
</p>
<h2 id="Callback"> Callback </h2>
<p>A callback is a plain JavaScript function passed to some method as an argument or option. Some callbacks are just events, called to give the user a chance to react when a certain state is triggered. jQuery's event system uses such callbacks everywhere:
</p>
<pre><code data-lang="javascript">$( "body" ).click(function( event ) {
console.log( "clicked: " + event.target );
});
</code></pre>
<p>Most callbacks provide arguments and a context. In the event-handler example, the callback is called with one argument, an Event. The context is set to the handling element, in the above example, document.body.
</p>
<p>Some callbacks are required to return something, others make that return value optional. To prevent a form submission, a submit event handler can return false:
</p>
<pre><code data-lang="javascript">$( "#myform" ).submit(function() {
return false;
});
</code></pre>
<p>Instead of always returning false, the callback could check fields of the form for validity, and return false only when the form is invalid.
</p>
<p><br />
</p>
<h2 id="Selector"> Selector </h2>
<p>A selector is used in jQuery to select DOM elements from a DOM document. That document is, in most cases, the DOM document present in all browsers, but can also be a XML document received via AJAX.
</p>
<p>The selectors are a composition of CSS and custom additions. XPath selectors are available as a plugin.
</p>
<p>All selectors available in jQuery are documented on the <a href="http://docs.jquery.com/Selectors" title="Selectors">Selectors API page</a>.
</p>
<p>There are lot of plugins that leverage jQuery's selectors in other ways. The validation plugin accepts a selector to specify a dependency, whether an input is required or not:
</p>
<pre><code data-lang="javascript">emailrules: {
required: "#email:filled"
}
</code></pre>
<p>This would make a checkbox with name "emailrules" required only if the user entered an email address in the email field, selected via its id, filtered via a custom selector ":filled" that the validation plugin provides.
</p>
<p>If Selector is specified as the type of an argument, it accepts everything that the jQuery constructor accepts, eg. Strings, Elements, Lists of Elements.
</p>
<h2 id="Event">Event</h2>
<p>jQuery's event system normalizes the event object according to W3C standards. The event object is guaranteed to be passed to the event handler (no checks for window.event required). It normalizes the target, relatedTarget, which, metaKey and pageX/Y properties and provides both stopPropagation() and preventDefault() methods.
</p>
<p>Those properties are all documented, and accompanied by examples, on the <a href="http://api.jquery.com/category/events/event-object/" title="Events">Event object</a> page.
</p>
<p>The standard events in the Document Object Model are: <code>blur, focus, load, resize, scroll, unload, beforeunload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress,</code> and <code>keyup</code>. Since the DOM event names have predefined meanings for some elements, using them for other purposes is not recommended. jQuery's event model can trigger an event by any name on an element, and it is propagated up the DOM tree to which that element belongs, if any.
</p>
<h2 id="Element"> Element </h2>
<p>An element in the Document Object Model (DOM) has attributes, text and children. It provides methods to traverse the parent and children and to get access to its attributes. Due to a lot of flaws in DOM API specifications and implementations, those methods are no fun to use. jQuery provides a wrapper around those elements to help interacting with the DOM. But often enough you will be working directly with DOM elements, or see methods that (also) accept DOM elements as arguments.
</p>
<p>Whenever you use jQuery's each-method, the context of your callback is set to a DOM element. That is also the case for event handlers.
</p>
<p>Some properties of DOM elements are quite consistent among browsers. Consider this example of a simple on-blur-validation:
</p>
<pre><code data-lang="javascript">$( ":text" ).blur(function() {
if( !this.value ) {
alert( "Please enter some text!" );
}
});
</code></pre>
<p>You could replace this.value with $(this).val() to access the value of the text input via jQuery, but in that case you don't gain anything.
</p>
<h2 id="jQuery"> jQuery </h2>
<p>A jQuery object contains a collection of Document Object Model (DOM) elements that have been created from an HTML string or selected from a document. Since jQuery methods often use CSS selectors to match elements from a document, the set of elements in a jQuery object is often called a set of "matched elements" or "selected elements".
</p>
<p>The jQuery object itself behaves much like an array; it has a <code>length</code> property and the elements in the object can be accessed by their numeric indices <code>[0]</code> to <code>[length-1]</code>. Note that a jQuery object is not actually a Javascript Array object, so it does not have all the methods of a true Array object such as <code>join()</code>.
</p>
<p>Most frequently, you will use the jQuery() function to create a jQuery object. <code>jQuery()</code> can also be accessed by its familiar single-character alias of <code>$()</code>, unless you have called <code>jQuery.noConflict()</code> to disable this option. Many jQuery methods return the jQuery object itself, so that method calls can be chained:
</p>
<pre><code data-lang="javascript">$( "p" ).css( "color", "red" ).find( ".special" ).css( "color", "green" );
</code></pre>
<p>Whenever you use a "destructive" jQuery method that potentially changes the set of elements in the jQuery object, such as <code>.filter()</code> or <code>.find()</code>, that method actually returns a new jQuery object with the resulting elements. To return to the previous jQuery object, you use the <code>.end()</code> method.
</p>
<p>A jQuery object may be empty, containing no DOM elements. You can create an empty jQuery object with <code>$()</code> (that is, passing no arguments at all). A jQuery object may also be empty if a selector doesn't select any elements, or if a chained method filters out all the elements. It is not an error; any further methods called on that jQuery object simply have no effect since they have no elements to act upon. So, in this example if there are no bad entries on the page then no elements will be colored red:
</p>
<pre><code data-lang="javascript">$( ".badEntry" ).css({ color: "red" });
</code></pre>
<h2 id="XMLHttpRequest"> XMLHttpRequest </h2>
<p>Some of jQuery's AJAX functions return the native XMLHttpRequest (XHR) object, or pass it as an argument to success/error/complete handlers, so that you can do additional processing or monitoring on the request. Note that AJAX functions only return or pass an XHR object when an XHR object is actually used in the request. For example, JSONP requests and cross-domain GET requests use a script element rather than an XHR object.
</p>
<p>Although the XHR object is a standard, there are variations in its behavior on different browsers. Refer to the W3C site and browsers' documentation for more information:
</p>
<ul><li> <a href="http://www.w3.org/TR/XMLHttpRequest/" class="external text" title="http://www.w3.org/TR/XMLHttpRequest/">W3C standard</a>
</li><li> <a href="http://developer.apple.com/internet/webcontent/xmlhttpreq.html" class="external text" title="http://developer.apple.com/internet/webcontent/xmlhttpreq.html">Apple (Safari)</a>
</li><li> <a href="http://developer.mozilla.org/en/xmlhttprequest" class="external text" title="http://developer.mozilla.org/en/xmlhttprequest">Mozilla (Firefox)</a>
</li><li> <a href="http://msdn.microsoft.com/en-us/library/ms535874%28VS.85%29.aspx" class="external text" title="http://msdn.microsoft.com/en-us/library/ms535874%28VS.85%29.aspx">Microsoft (Internet Explorer)</a>
</li><li> <a href="http://www.opera.com/docs/specs/opera9/xhr/" class="external text" title="http://www.opera.com/docs/specs/opera9/xhr/">Opera</a>
</li></ul>
<p>Google does not appear to have an official page for their XHR documentation for Chrome. As of version 5, Chrome does not support the use of the file protocol for XHR requests.
</p>
<h2 id="jqXHR"> jqXHR </h2>
<p>As of jQuery 1.5, the <a href="http://api.jquery.com/jQuery.ajax/">$.ajax()</a> method returns the jqXHR object, which is a superset of the XMLHTTPRequest object. For more information, see the <a href="http://api.jquery.com/jQuery.ajax/#jqXHR">jqXHR section of the $.ajax entry</a>
</p>
<h2 id="Deferred"> Deferred Object</h2>
<p>As of jQuery 1.5, the <a href="http://api.jquery.com/category/deferred-object">Deferred</a> object provides a way to register multiple callbacks into self-managed callback queues, invoke callback queues as appropriate, and relay the success or failure state of any synchronous or asynchronous function.</a>
</p>
<h2 id="Promise"> Promise Object</h2>
<p>This object provides a subset of the methods of the <a href="http://api.jquery.com/category/deferred-object">Deferred</a> object (<a href="http://api.jquery.com/deferred.then/"><code>then</code></a>, <a href="http://api.jquery.com/deferred.done/"><code>done</code></a>, <a href="http://api.jquery.com/deferred.fail/"><code>fail</code></a>, <a href="http://api.jquery.com/deferred.always"><code>always</code></a>, <a href="http://api.jquery.com/deferred.pipe/"><code>pipe</code></a>. <a href="http://api.jquery.com/deferred.isResolved/"><code>isResolved</code></a>, and <a href="http://api.jquery.com/deferred.isRejected/"><code>isRejected</code></a>) to prevent users from changing the state of the Deferred.</a>
</p>
<h2 id="Callbacks">Callbacks Object</h2>
<p>A multi-purpose object that provides a powerful way to manage callback lists. It supports adding, removing, firing, and disabling callbacks. The Callbacks object is created and returned by the <code>$.Callbacks</code> function and subsequently returned by most of that function's methods. </p>