2 Star 12 Fork 5

shuiruohanyu/gao-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
32.导入和导出.html 634 Bytes
一键复制 编辑 原始数据 按行查看 历史
shuiruohanyu 提交于 2024-12-10 08:50 . js中的esModule模式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>32.导入和导出</title>
</head>
<body>
<button id="btnGet">获取数据</button>
<script type="module">
// http协议 类似网络网页的模式-开启一个服务器-把网页放在服务器上-访问这个网页、
// file协议 打开文件形式 相当于在本地打开一个文件
import { getList } from './js/api.js'
document.querySelector("#btnGet").onclick = () => {
getList()
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shuiruohanyu/gao-web.git
git@gitee.com:shuiruohanyu/gao-web.git
shuiruohanyu
gao-web
gao-web
main

搜索帮助