您好,登錄后才能下訂單哦!
這篇文章主要介紹Javascript中導(dǎo)入js文件的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
為了避免在HTML
中顯示大量的代碼,我們一般選擇將js腳本
單獨放入一個文件中,然后再將js文件
導(dǎo)入HTML
中,這樣可以使得HTML
文件更加簡潔,本文主要介紹導(dǎo)入js腳本
的兩種方式分別是:傳統(tǒng)導(dǎo)入、模塊導(dǎo)入。
首先確認需要導(dǎo)入的js腳本
的位置,本文在HTML
文件同路徑下。
1.傳統(tǒng)導(dǎo)入:
JS腳本內(nèi)容:
//文件名:example.js let a="呵呵姑娘";
HTML內(nèi)容:
<!-- example.html --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script src="./example.js"></script> <script> console.log(a); </script> </body> </html>
2.模塊導(dǎo)入:
JS腳本內(nèi)容:
//文件名:example.js let a="呵呵姑娘"; export {a};
HTML內(nèi)容:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script type="module"> import {a} from './example.js'; console.log(a); </script> </body> </html>
以上是“Javascript中導(dǎo)入js文件的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。