How jQuery Works on your HTML
link jQuery: The Basics
This is a basic tutorial, designed to help you get started using jQuery. If you don't have a test page setup yet, start by creating the following HTML page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
|
src
attribute in the <script>
element must point to a copy of jQuery. Download a copy of jQuery from the Downloading jQuery page and store the jquery.js
file in the same directory as your HTML file.link Launching Code on Document Ready
To ensure that their code runs after the browser finishes loading the document, many JavaScript programmers wrap their code in anonload
function:
1
2
3
4
5
|
|
1
2
3
4
5
|
|
ready
event, you can add a click handler to the link:
1
2
3
4
5
6
7
8
9
|
|
For
click
and most other events, you can prevent the default behavior by calling event.preventDefault()
in the event handler:
1
2
3
4
5
6
7
8
9
10
11
|
|
link Complete Example
The following example illustrates the click handling code discussed above, embedded directly in the HTML<body>
. Note that in practice, it is usually better to place your code in a separate JS file and load it on the page with a <script>
element's src
attribute.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
|
link Adding and Removing an HTML Class
Important: You must place the remaining jQuery examples inside theready
event so that your code executes when the document is ready to be worked on.Another common task is adding or removing a class.
First, add some style information into the
<head>
of the document, like this:
1
2
3
4
5
|
|
1
|
|
<a>
elements are now bold.To remove an existing class, use .removeClass():
1
|
|
link Special Effects
jQuery also provides some handy effects to help you make your web sites stand out. For example, if you create a click handler of:
1
2
3
4
5
6
7
|
|
link Callbacks and Functions
Unlike many other programming languages, JavaScript enables you to freely pass functions around to be executed at a later time. A callback is a function that is passed as an argument to another function and is executed after its parent function has completed. Callbacks are special because they patiently wait to execute until their parent finishes. Meanwhile, the browser can be executing other functions or doing all sorts of other work.To use callbacks, it is important to know how to pass them into their parent function.
link Callback without Arguments
If a callback has no arguments, you can pass it in like this:
1
|
|
myhtmlpage.html
, it executes the myCallBack()
function.- Note: The second parameter here is simply the function name (but not as a string, and without parentheses).
link Callback with Arguments
Executing callbacks with arguments can be tricky.link Wrong
This code example will not work:
1
|
|
myCallBack( param1, param2 )
immediately and then passes myCallBack()
's return value as the second parameter to $.get()
. We actually want to pass the function myCallBack()
, not myCallBack( param1, param2 )
's return value (which might or might not be a function). So, how to pass in myCallBack()
and include its arguments?link Right
To defer executingmyCallBack()
with its parameters, you can use an anonymous function as a wrapper. Note the use of function() {
. The anonymous function does exactly one thing: calls myCallBack()
, with the values of param1
and param2
.
1
2
3
4
5
|
|
$.get()
finishes getting the page myhtmlpage.html
, it executes the anonymous function, which executes myCallBack( param1, param2 )
.
No comments:
Post a Comment