您的位置:首页 >综合精选 >

Javascript中导入js文件的两种方式

跟大家讲解下有关Javascript中导入js文件的两种方式,相信小伙伴们对这个话题应该也很关注吧,现在就为小伙伴们说说Javascript中导入js文件的两种方式,小编也收集到了有关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>

推荐:《2021年js面试题及答案(大汇总)》《js教程》

以上就是Javascript中导入js文件的两种方式的详细内容,更多请关注php中文网其它相关文章!

来源:php中文网

免责声明:本文由用户上传,如有侵权请联系删除!