IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> JavaScript-初识ajax、ajax封装、及json简单实战案例(下) -> 正文阅读

[JavaScript知识库]JavaScript-初识ajax、ajax封装、及json简单实战案例(下)

JavaScript-初识ajax、ajax封装、及json对象使用(下)

一、内涵段子样式与结构

第一步:
运用之前学的内容写好要循环生成的样式与结构

效果图:
在这里插入图片描述
第二步:
引入JavaScript-初识ajax、ajax封装、及json对象使用(上)封装的ajax

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=375, user-scalable=no" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
  </head>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .content {
      width: 100%;
      height: 150px;
      background-color: rgb(233, 104, 125);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .top {
      width: 100%;
      flex: 2;
      background-color: #87ceeb;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .commentsimg {
      width: 50px;
      height: 50px;
      background-repeat: no-repeat;
      background-size: 50px auto;
      background-position: center center;
      background-color: rgb(255, 62, 62);
      margin-left: 20px;
    }
    .commentsname {
      width: 100%;
      font-size: 10px;
      font-family: "宋体";
      line-height: 10px;
      text-align: center;
      padding-top: 5px;
    }
    .left {
      flex: 1;
    }
    .right {
      flex: 3;
      display: flex;
      flex-direction: column;
    }
    .bottom {
      width: 100%;
      flex: 1;
      background-color: rgba(186, 243, 210, 0.952);
      display: flex;
      flex-direction: column;
      padding-left: 5px;
    }
    .downcount {
      flex: 1;
      font-size: 8px;
      font-family: "宋体";
      line-height: 8px;
      margin-top: 10px;
    }
    .text {
      font-family: "微软雅黑";
      font-size: 15px;
    }
    .video {
      width: 100%;
      margin-top: 10px;
      flex: 1;
      font-size: 8px;
    }
    .download {
      width: 100%;
      background: #efefef;
      text-align: center;
      height: 25px;
    }
  </style>
  <body>
    <div class="main">
      <div class="content">
        <div class="top">
          <div class="left">
            <div class="commentsimg" style="background-image: url()"></div>
            <div class="commentsname">用户名:</div>
          </div>
          <div class="right">
            <div class="text">标题:</div>
          </div>
        </div>
        <div class="bottom">
          <div class="video">video</div>
          <div class="downcount">下载次数</div>
        </div>
      </div>
    </div>
    <div class="download">刷新页面</div>
    <script src="../js文件/postajax.js"></script>
    <script>
      var url =
        "https://api.apiopen.top/getJoke?page=1&count=7&type%20video";
      getAjax(url, function(xhr) {
        var dataobj = JSON.parse(xhr.response);
        var videoList = dataobj.result;
        console.log(videoList);
      });
    </script>
  </body>
</html>

输出查看效果:
在这里插入图片描述
在这里插入图片描述

二、交互与应用

知识点
1.JavaScript-中forEach()用法
2.封装DOM元素为jQuery对象${变量名}传递参数
3.scrollTo(0,0);滚动到x,y坐标都为0的位置

效果图:
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=375, user-scalable=no" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
  </head>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .content {
      width: 100%;
      height: 150px;
      background-color: rgb(233, 104, 125);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .top {
      width: 100%;
      flex: 2;
      background-color: #87ceeb;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .commentsimg {
      width: 50px;
      height: 50px;
      background-repeat: no-repeat;
      background-size: 50px auto;
      background-position: center center;
      background-color: rgb(255, 62, 62);
      margin-left: 20px;
    }
    .commentsname {
      width: 100%;
      font-size: 10px;
      font-family: "宋体";
      line-height: 10px;
      text-align: center;
      padding-top: 5px;
    }
    .left {
      flex: 1;
    }
    .right {
      flex: 3;
      display: flex;
      flex-direction: column;
    }
    .bottom {
      width: 100%;
      flex: 1;
      background-color: rgba(186, 243, 210, 0.952);
      display: flex;
      flex-direction: column;
      padding-left: 5px;
    }
    .downcount {
      flex: 1;
      font-size: 8px;
      font-family: "宋体";
      line-height: 8px;
      margin-top: 10px;
    }
    .text {
      font-family: "微软雅黑";
      font-size: 15px;
    }
    .video {
      width: 100%;
      margin-top: 10px;
      flex: 1;
      font-size: 8px;
    }
    .download {
      width: 100%;
      background: #efefef;
      text-align: center;
      height: 25px;
    }
  </style>
  <body>
    <div class="main">
    </div>
    <div class="download">刷新页面</div>
    <script src="../js文件/postajax.js"></script>
    <script>
      var pageof = 1;
      var url =
        "https://api.apiopen.top/getJoke?page=" +
        pageof +
        "&count=7&type%20video";
        var main = document.querySelector(".main");
      var downloadDom = document.querySelector(".download");
      getAjax(url, function(xhr) {
        var dataobj = JSON.parse(xhr.response);
        var videoList = dataobj.result;
        console.log(videoList);
        renderList(videoList);
      });
      function renderList(videoList) {
        
        videoList.forEach(function(item, index) {
          var content = document.createElement("div");
          content.className = "content";
          content.innerHTML = `
          <div class="top">
          <div class="left">
            <div class="commentsimg" style="background-image: url(${item.top_comments_header})"></div>
            <div class="commentsname">${item.name}</div>
          </div>
          <div class="right">
            <div class="text">标题:${item.text}</div>
          </div>
        </div>
        <div class="bottom">
          <div class="video">video地址:${item.video}</div>
          <div class="downcount">下载次数:${item.down}</div>
        </div>
          `;
          main.appendChild(content);
        });
      }
      downloadDom.onclick = function() {
        pageof++;
        var url =
          "https://api.apiopen.top/getJoke?page=" +
          pageof +
          "&count=7&type%20video";
        getAjax(url, function(xhr) {
          var dataobj = JSON.parse(xhr.response);
          main.innerHTML = "";
          var videoList = dataobj.result;
          renderList(videoList);
          scrollTo(0,0);
        });
      };
    </script>
  </body>
</html>

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-12-09 11:33:50  更:2021-12-09 11:33:55 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:04:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码