zoukankan      html  css  js  c++  java
  • my own JSON

    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8">
      <title>Our superheroes</title>
      <link href="https://fonts.googleapis.com/css?family=Faster+One" rel="stylesheet">
      <link rel="stylesheet" href="./style.css">
      <title>JSON</title>
    </head>
    
    <body>
    
      <header>
        <div>
    
        </div>
      </header>
    
      <section>
    
      </section>
      <script src="./script/main.js"></script>
    </body>
    
    </html>
    header h1{
      width: 100%;
      text-align: center;
      font-size: 50px;
      font-family: 楷体;
    }
    section{
      width: 100%;
      display: inline-flex;
    }
    section p{
      margin:0;
      font-size: 30px;
      font-family: 楷体;
      color: rgb(0, 0, 0);
      width: 100%;
    }
    div{
      width: 33%;
    }
    section p2{
      margin:0;
      font-size: 30px;
      font-family: 楷体;
      color: rgb(3, 3, 3);
      width: 33%;
    }
    section p3{
      margin:0;
      font-size: 25px;
      font-family: 楷体;
      color: rgb(0, 0, 0);
      width: 33%;
    }
    var header = document.querySelector('header');
    var section = document.querySelector('section');
    var requestURL = 'https://wcphaha.github.io/for-football/Sports.json';
    var request = new XMLHttpRequest();
    request.open('GET', requestURL);
    request.responseType = 'json';
    request.send();
    request.onload = function () {
        var inter = request.response;
        console.log(inter)
        showname(inter);
        showteam(inter);
    }
    
    function showname(jsonObj) {
        var h = document.createElement('h1');
        h.textContent = jsonObj['team'];
        header.appendChild(h)
    }
    
    function showteam(jsonObj) {
        var p1 = new Array(4);
        var part1 = document.querySelector('div');
        for (var i = 0; i < 4; i++)
            p1[i] = document.createElement('p');
    
        p1[0].textContent = "地址:" + jsonObj['address'];
        p1[1].textContent = "球场:" + jsonObj['field'];
        p1[2].textContent = "主席:" + jsonObj['chairman'];
        p1[3].textContent = "教练:" + jsonObj['coach'];
    
        for (i = 0;i<4; i++)
            part1.appendChild(p1[i]);
        section.appendChild(part1);
    
        var honor = jsonObj['honor'];
        var p2=document.createElement('p2');
        for (var i = 0; i < 6; i++) {
            var list = document.createElement('li');
            list.textContent=honor[i];
            p2.appendChild(list);
        }
        section.appendChild(p2);
        var member = jsonObj['member'];
        var p3 = document.createElement('p3');
        for(var i=0;i<16;i++){
            var list = document.createElement('li');
            list.textContent=member[i].name+'('+member[i].number+')'+'--'+member[i].position+'--'+member[i].nationality;
            p3.appendChild(list);
        }
        section.appendChild(p3);
    
    }
  • 相关阅读:
    ASP.NET MVC5写.php路由匹配时的问题 ASP.NET MVC 4 在 .NET 4.0 与.NET 4.5 的專案範本差異
    asp.net mvc上传头像加剪裁功能介绍
    图片延迟加载实现
    c#中多线程访问winform控件的若干问题
    C# WinForm实现控件拖动实例介绍
    C# 实现对窗体(Form)换肤
    C#读写txt文件的两种方法介绍
    C#实现JSON序列化与反序列化介绍
    高效的VS调试技巧
    SQL 添加字段和默认值脚本
  • 原文地址:https://www.cnblogs.com/wcphahaha/p/9984620.html
Copyright © 2011-2022 走看看