English 中文(简体)
Javascript - Placement
  • 时间:2024-09-17

JavaScript - Placement in HTML File


Previous Page Next Page  

There is a flexibipty given to include JavaScript code anywhere in an HTML document. However the most preferred ways to include JavaScript in an HTML file are as follows −

    Script in <head>...</head> section.

    Script in <body>...</body> section.

    Script in <body>...</body> and <head>...</head> sections.

    Script in an external file and then include in <head>...</head> section.

In the following section, we will see how we can place JavaScript in an HTML file in different ways.

JavaScript in <head>...</head> section

If you want to have a script run on some event, such as when a user cpcks somewhere, then you will place that script in the head as follows −

<html>
   <head>      
      <script type = "text/javascript">
         <!--
            function sayHello() {
               alert("Hello World")
            }
         //-->
      </script>     
   </head>
   
   <body>
      <input type = "button" oncpck = "sayHello()" value = "Say Hello" />
   </body>  
</html>

This code will produce the following results −