动态import 你眼中的光 2024-02-26 45 阅读1分钟 const btn=document.getElementById('btn'); btn.onclick=function(){ 动态导入 import('./hello.js').then(module=>{ module.hello(); }) } ------ 静态import import * as m1 from './hello.js';