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