(轉)輕鬆學習JavaScript三:JavaScript與HTML的結合

摘自:http://blog.csdn.net/erlian1992 javascript

HTML中的JavaScript腳本必須位於<script>與</script>標籤之間,JavaScript腳本可被放置在HTML頁面的html

<body>標籤和<head>標籤中,這種視狀況而定,通常放在<head>標籤內。java

       一<script> 標籤瀏覽器

      如需在HTML頁面中插入JavaScript腳本,請使用<script>標籤。<script>和</script>會告訴JavaScript在何處開始函數

和結束。<script>和</script>之間的代碼行包含了JavaScript:學習

 

[html]  view plain copy print ?
 
  1. <span style="font-size:18px;"><script type="text/javascript">  
  2. alert("歡迎來到JavaScript世界!!!");  
  3. </script></span>  

       您無需理解上面的代碼。只需明白,瀏覽器會解釋並執行位於 <script> 和 </script> 之間的 JavaScript。那些老ui

 

舊的實例可能會在<script>標籤中使用type="text/javascript"。如今已經沒必要這樣作了。JavaScript是全部現代瀏覽器spa

以及HTML5中的默認腳本語言。鑑於剛剛學習JavaScript語言的可使用!.net

       二<body>中的JavaScriptxml

       在本例中,JavaScript會在頁面加載時向HTML的<body>寫文本:

       實例代碼:

 

[html]  view plain copy print ?
 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  5. <title>JavaScript腳本語言</title>  
  6. >  
  7. </head>  
  8.   
  9. <body>  
  10. <p>  
  11. JavaScript 可以直接寫入 HTML 輸出流中:  
  12. </p>  
  13.   
  14.   
  15. <script type="text/javascript">  
  16. document.write("<h1>This is a heading</h1>");  
  17. document.write("<p>This is a paragraph.</p>");  
  18. </script>  
  19.   
  20.   
  21. <p>  
  22. 您只能在 HTML 輸出流中使用 <strong>document.write</strong>。  
  23. 若是您在文檔已加載後使用它(好比在函數中),會覆蓋整個文檔。  
  24. </p>  
  25. </body>  
  26. </html>  

       咱們先無論JavaScript代碼怎麼寫和怎麼運行,先來看運行結果:

 

       三JavaScript 函數和事件

       上面例子中的 JavaScript 語句,會在頁面加載時執行。一般,咱們須要在某個事件發生時執行代碼,好比當用戶

點擊按鈕時。若是咱們把 JavaScript 代碼放入函數中,就能夠在事件發生時調用該函數。

       四<head>或<body>中的JavaScript

    您能夠在 HTML 文檔中放入不限數量的腳本。腳本可位於 HTML 的 <body> 或 <head> 部分中,或者同時存在於

兩個部分中。一般的作法是把函數放入 <head> 部分中,或者放在頁面底部。這樣就能夠把它們安置到同一處位置,

不會干擾頁面的內容。

       五<head>中的JavaScript函數

       在本例中,咱們把一個JavaScript函數放置到HTML頁面的<head>部分。該函數會在點擊按鈕時被調用:

       實例代碼:

 

[html]  view plain copy print ?
 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  5. <title>JavaScript腳本語言</title>  
  6. <script type="text/javascript">  
  7. function myFunction()  
  8. {  
  9. document.getElementById("demo").innerHTML="My First JavaScript Function";  
  10. }  
  11. </script>  
  12. </head>  
  13.   
  14. <body>  
  15. <h1>My Web Page</h1>  
  16.   
  17.   
  18. <id="demo">A Paragraph.</p>  
  19.   
  20.   
  21. <button type="button" onclick="myFunction()">點擊這裏</button>  
  22.   
  23. </body>  
  24. </html>  

       運行的結果爲:

 

       點擊按鈕後的效果爲:

       六<body>中的JavaScrip 函數

       在本例中,咱們把一個JavaScript函數放置到HTML頁面的<body>部分。該函數會在點擊按鈕時被調用:

       實例代碼:

 

[html]  view plain copy print ?
 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  5. <title>JavaScript腳本語言</title>  
  6.   
  7. </head>  
  8.   
  9. <body>  
  10. <h1>My First Web Page</h1>  
  11.   
  12.   
  13. <id="demo">A Paragraph.</p>  
  14.   
  15.   
  16. <button type="button" onclick="myFunction()">點擊這裏</button>  
  17.   
  18.   
  19. <script type="text/javascript">  
  20. function myFunction()  
  21. {  
  22. document.getElementById("demo").innerHTML="My First JavaScript Function";  
  23. }  
  24. </script>  
  25. </body>  
  26. </html>  

 

       運行的結果與上述五的結果同樣!

       提示:咱們把 JavaScript 放到了頁面代碼的底部,這樣就能夠確保在 <p> 元素建立以後再執行腳本。

       七外部的JavaScript

       咱們也能夠把腳本保存到外部文件中。外部文件一般包含被多個網頁使用的代碼。外部 JavaScript 文件的文件擴

展名是 .js。如需使用外部文件,請在 <script> 標籤的 "src" 屬性中設置該 .js 文件,若是有大量的JavaScript代碼,我

們提倡使用外部的JavaScript方式,通常咱們也採用分離的方式鏈接到HTML文檔中。

       實例

       HTML代碼:

 

[html]  view plain copy print ?
 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  5. <title>JavaScript腳本語言</title>  
  6. <script type="text/javascript" src="/js/myScript.js"></script>  
  7. </head>  
  8.   
  9. <body>  
  10. <h1>My Web Page</h1>  
  11.   
  12.   
  13. <id="demo">A Paragraph.</p>  
  14.   
  15.   
  16. <button type="button" onclick="myFunction()">點擊這裏</button>  
  17.   
  18.   
  19. <p><b>註釋:</b>myFunction 保存在名爲 "myScript.js" 的外部文件中。</p>  
  20. </body>  
  21. </html>  

 

       myScript.js代碼:

 

[javascript]  view plain copy print ?
 
  1. function myFunction()  
  2. {  
  3. document.getElementById("demo").innerHTML="My First JavaScript Function";  
  4. }  

       運行的結果和上述一致!

 

       提示:在<head 或<body>中引用腳本文件都是能夠的。實際運行效果與您在<script>標籤中編寫腳本徹底一致。

外部腳本不能包含 <script> 標籤。

相關文章
相關標籤/搜索