//静态导入 //import * as m1 from "./hello.js" const btn = document.getElementById('btn') btn.onclick = function(){ //动态导入 返回Promise对象 import('./hello.js').then(module=>{ module.hello() }) }