1 Star 0 Fork 98

stargazing/npi_exercise04

forked from Admin/npi_exercise04 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
moutains.html 862 Bytes
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2021-04-22 14:47 . sadfsadf
<html>
<body>
<h1>Mountains</h1>
<div id="mountains"></div>
<div id="mountains" onload="create()">
</div>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
var MOUNTAINS = [
];
$(document).ready(function(){
fetch("data.json").then(response => {
console.log(response.status);
// → 200
console.log(response.headers.get("Content-Type"));
// → text/plain
});
$.get("data.json", function(data){
// alert("Data Loaded: " + data);
MOUNTAINS=data;
f();
});
const f=function(){
let str="<table border='1px'>"
for(var i=0;i<MOUNTAINS.length;i++){
str+="<tr><td>"+MOUNTAINS[i].name+"</td><td>"+MOUNTAINS[i].height+"</td><td>"+MOUNTAINS[i].place+"</td><td>"+"</tr>"
}
str+="</table>";
$("body").append(str);
}
console.log("hihi")
})
console.log("haha")
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stargaz1ng/npi_exercise04.git
git@gitee.com:stargaz1ng/npi_exercise04.git
stargaz1ng
npi_exercise04
npi_exercise04
master

搜索帮助