>>  Site Map >>  Forums >>  JavaScript_HTML

Forum module - topics in forum:



JavaScript_HTML - tìm hiểu và trao đỏi các mã java để làm trang web bạn sinh động hơn, các thủ thuật code html css



Where to Place Javascript - sử dụng ơ phần nào khi viết code

Where to Place Javascript - sử dụng ơ phần nào khi viết code
There are three general areas that Javascript can be placed for use in a web page.

1. Inside the head tag
2. Within the body tag (like our example in the previous lesson)
3. In an external file (we'll talk about this next lesson)

The location choice of head or body is very simple. If you want to have a script run on some event, such as when a user clicks somewhere, then you will place that script in the head. If you want the script to run when the page loads, like our "Hello World!" example in the previous lesson, then you will want to place the script within the body tag.

External Javascript files and their uses will be discussed in the next lesson.
An Example Head Script

Since we have already seen the kind of script that goes in the body, how about we write a script that takes place when some event occurs, say a click on a button.
HTML & JavaScript Code:

We created a function called popup and placed it in the head of the HTML document. Now every time someone clicks on the button (this is an event) an alert will popup with "Hello World!". We will go into more depth on functions and events in a later lesson.




Search from ALEXA


put your ads here