Senin, 14 Mei 2012

JavaScript Where To

JavaScript in

The example below writes the current date into an existing

element when the page loads:

lihat gambar 1 :


gambar 1

Note that the JavaScript is placed at the bottom of the page to make sure it is not executed before the

element is created.

JavaScript Functions and Events

JavaScripts in an HTML page will be executed when the page loads. This is not always what we want.

Sometimes we want to execute a JavaScript when an event occurs, such as when a user clicks a button. When this is the case we can put the script inside a function.

Events are normally used in combination with functions (like calling a function when an event occurs).

You will learn more about JavaScript functions and events in later chapters.

JavaScript in

The example below calls a function when a button is clicked:

lihat gambar 2 :

gambar 2

Scripts in and

You can place an unlimited number of scripts in your document, and you can have scripts in both the body and the head section at the same time.

It is a common practice to put all functions in the head section, or at the bottom of the page. This way they are all in one place and do not interfere with page content.

Using an External JavaScript

JavaScript can also be placed in external files.

External JavaScript files often contain code to be used on several different web pages.

External JavaScript files have the file extension .js.

Note: External script cannot contain the tags!

lihat gambar 3 :

gambar 3

Note: Remember to place the script exactly where you normally would write the script!

1 comments:

Posting Komentar