script之type=module
importscript。
·
专栏目录请点击
- 在远古时代,我们引入js文件一般使用
<script src='路径'>
来引入其他的js文件,但是随着js的规范化和模块化,在模块与模块之间的引入往往用import
- 想要实现这种效果,我们可以在
script
上增加一个type='module'
实例
目录
代码
script_model.html
<!DOCTYPE html>
<html lang="en">
<body>
<script type="module">
import {sayHello} from "./index.js"
sayHello()
</script>
</body>
</html>
index.js
export const sayHello = () => {
console.log("Hello")
}
这样我就就会发现我们医用使用import
来进行引入数据了
更多推荐
已为社区贡献7条内容
所有评论(0)