我們可以在HTML文檔中的任何位置放置JavaScript代碼。但是,在HTML文件中放置JavaScript代碼的最佳方法如下
1、在<head> ... </ head>部分
2、<body> ... </ body>部分中放置代碼
3、在<body> ... </ body>和<head> ... </ head>部分
4、在外部文件中編寫腳本,然后在<head> ... </ head>部分中引入
接下來將在文章中詳細(xì)說明這四種方法
【推薦課程:JavaScript課程】
在<head> ... </ head>部分
如果希望在某個(gè)事件上運(yùn)行腳本,例如當(dāng)用戶單擊某個(gè)位置時(shí)會(huì)觸發(fā)的事件,這時(shí)我們可以將該腳本放在頭部中
<head> <meta charset="UTF-8"> <title>Document</title> <script type = "text/javascript"> function Hello() { alert("Hello World") } </script> </head>
效果圖:
在<body> ... </ body>部分
如果需要在頁面加載時(shí)運(yùn)行腳本以便腳本在頁面中生成內(nèi)容,則腳本將進(jìn)入文檔的<body>部分。在這種情況下,將不會(huì)使用JavaScript定義任何函數(shù)
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script type = "text/javascript"> document.write("Hello World") </script> <p>頁面加載時(shí)腳本就會(huì)生成內(nèi)容</p> </body> </html>
效果圖:
在<body>和<head>部分中的JavaScript代碼
<head> <meta charset="UTF-8"> <title>Document</title> <script type = "text/javascript"> function Hello() { alert("Hello World") } </script> </head> <body> <script type = "text/javascript"> document.write("Hello World") </script>
效果圖:
外部文件中的JavaScript
當(dāng)需要在網(wǎng)站上的多個(gè)頁面上重復(fù)使用相同的JavaScript代碼時(shí)我們就可以通過外部引入js文件來實(shí)現(xiàn)。這樣有利于維護(hù)相同的代碼,該腳本標(biāo)簽提供一種機(jī)制,允許存儲(chǔ)的JavaScript在外部文件中,然后包含到的HTML文件。
HTML代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script src="111.js"></script> </head> <body> <input type = "button" onclick = "Hello()" value = "點(diǎn)擊" /> </body> </html>
外部js文件
function Hello() { document.write("hello world") }
效果圖:
總結(jié):
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com