1.数据与方法的导出与导入
index.js文件中
// export 定义对外接口
export const name = "djl";
export const age = 18;
export function method1(a,b)
{
console.log(a+b)
}
// 默认抛出 一个模块只有一个默认抛出
export default {
}
index.html文件中
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script type="module">
// import
import {name,age,method1} from '../index.js' //数据与方法的导入
console.log(name,age)
method1(3,9)
</script>
</body>
</html>