Blogger Information
Blog 35
fans 0
comment 0
visits 16975
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0728-数组:图片的自动加载、轮播图、仿写词典选项卡、方法实例演示
三九三伏
Original
342 people have browsed it

一、页面自动加载数组构成的图片

HMTL代码,必要地方都有注释。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <link rel="stylesheet" href="test.css">
  9. </head>
  10. <body>
  11. <script>
  12. const divSlider = document.createElement('div');
  13. divSlider.classList.add('slider');
  14. const divImgs = document.createElement('div');
  15. divImgs.classList.add('imgs');
  16. const divBtns = document.createElement('div');
  17. divBtns.classList.add('btns');
  18. // 将所有图片放在一个数组中
  19. let imgGrps = ['./static/img/banner-1.jpg','./static/img/banner-2.jpg','./static/img/banner-3.jpg','./static/img/banner-4.jpg'];
  20. const a = document.createElement('a');
  21. function display(){
  22. document.body.append(divSlider);
  23. divSlider.append(divImgs);
  24. divSlider.append(divBtns);
  25. divImgs.append(a);
  26. // 根据图片数量,动态添加图片到页面中。
  27. for(i=0; i < imgGrps.length; i++){
  28. const img = document.createElement('img');
  29. img.src = imgGrps[i];
  30. img.dataset.index = i + 1;
  31. a.append(img);
  32. // 根据图片数量,动态创建按钮组,并动态添加到页面中。
  33. const span = document.createElement('span');
  34. span.dataset.index = i + 1;
  35. divBtns.append(span);
  36. span.addEventListener('click',setActive,false);
  37. if(i == 0){
  38. img.classList.add('active');
  39. span.classList.add('active');
  40. }
  41. }
  42. }
  43. // 在页面初始化时,自动加载内容,事件是 load。
  44. window.addEventListener('load',display,false);
  45. </script>
  46. </body>
  47. </html>

CSS(test.css)部分代码,必要地方都有注释。

  1. * {
  2. margin:0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. a {
  7. color: #555;
  8. text-decoration: none;
  9. }
  10. li {
  11. list-style: none;
  12. }
  13. /* ! 3. 轮播图 */
  14. .slider {
  15. max-width: 750px;
  16. min-width: 320px;
  17. margin: auto;
  18. padding: 0 10px;
  19. }
  20. .slider .imgs {
  21. /* 图片容器必须要有高度,否则下面图片不能正常显示 */
  22. max-height: 235px;
  23. }
  24. .slider .imgs img {
  25. /* 图片完全充满父级空间显示 */
  26. height: 100%;
  27. width: 100%;
  28. /* 图片带有圆角 */
  29. border-radius: 10px;
  30. /* 默认图片全部隐藏,只有有active的图片才显示 */
  31. display: none;
  32. }
  33. /* 默认显示第一张 */
  34. .slider .imgs img.active {
  35. display: block;
  36. }
  37. /* 轮播图按钮组 */
  38. .slider .btns {
  39. /* 按钮水平一排显示,用flex,且水平居中 */
  40. display: flex;
  41. place-content: center;
  42. }
  43. .slider .btns span {
  44. /* 按钮宽高相同,确定显示成一个正圆 */
  45. width: 10px;
  46. height: 10px;
  47. /* 加上红色背景和数字是为了布局时可以看到,一会更去掉 */
  48. background-color: #333;
  49. /* 50%可确保显示为正圆 */
  50. border-radius: 50%;
  51. /* 按钮上外边距负值,可将它上移,可移动到图片中下方 */
  52. margin: -16px 5px 5px;
  53. }
  54. .slider .btns span.active {
  55. background-color: #fff;
  56. }
  57. .slider .btns span:hover {
  58. cursor: pointer;
  59. }

效果:

二、自动轮播图

没有使用load事件,使用函数每两秒触发一次点击。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <link rel="stylesheet" href="test.css">
  9. </head>
  10. <body>
  11. <script>
  12. const divSlider = document.createElement('div');
  13. divSlider.classList.add('slider');
  14. const divImgs = document.createElement('div');
  15. divImgs.classList.add('imgs');
  16. const divBtns = document.createElement('div');
  17. divBtns.classList.add('btns');
  18. // 将所有图片放在一个数组中
  19. let imgGrps = ['./static/img/banner-1.jpg','./static/img/banner-2.jpg','./static/img/banner-3.jpg','./static/img/banner-4.jpg'];
  20. const a = document.createElement('a');
  21. document.body.append(divSlider);
  22. divSlider.append(divImgs);
  23. divSlider.append(divBtns);
  24. divImgs.append(a);
  25. // 根据图片数量,动态添加图片到页面中。
  26. for(i=0; i < imgGrps.length; i++){
  27. const img = document.createElement('img');
  28. img.src = imgGrps[i];
  29. img.dataset.index = i + 1;
  30. a.append(img);
  31. // 根据图片数量,动态创建按钮组,并动态添加到页面中。
  32. const span = document.createElement('span');
  33. span.dataset.index = i + 1;
  34. divBtns.append(span);
  35. span.addEventListener('click',setActive,false);
  36. if(i == 0){
  37. img.classList.add('active');
  38. span.classList.add('active');
  39. }
  40. }
  41. //获取所有看图片和按钮
  42. const imgs = document.querySelectorAll('.slider .imgs img');
  43. // console.log(imgs);
  44. const btns = document.querySelectorAll('.slider .btns span');
  45. // console.log(btns);
  46. // 设置激活
  47. function setActive(){
  48. // console.log("进来了!",btns,imgs);
  49. // 清除掉图片和按钮当前的active状态
  50. btns.forEach(btn => btn.classList.remove('active'));
  51. // console.log(btns);
  52. imgs.forEach(img => img.classList.remove('active'));
  53. // console.log(imgs);
  54. event.target.classList.add('active');
  55. // console.log(btns);
  56. imgs.forEach(img => {
  57. if(img.dataset.index == event.target.dataset.index){
  58. img.classList.add('active');
  59. }
  60. });
  61. // console.log(imgs);
  62. }
  63. // 定时播放
  64. setInterval((arr) => {
  65. // 四张图轮播顺序,1234->2341 ->3412 ->4123 ->1234,始终循环取第一张图,放到最后。
  66. let index = arr.shift();
  67. // console.log(index);
  68. btns[index].dispatchEvent(new Event('click'));
  69. // console.log(btns[index]);
  70. arr.push(index);
  71. // console.log(arr);
  72. }, 2000, Object.keys('btns'));
  73. </script>
  74. </body>
  75. </html>

css代码与第一部分相同,不再重复。
轮播效果:



三、仿写php中文网编程词典选项卡

HTML代码,必要地方都有注释。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <link rel="stylesheet" href="test.css">
  9. <link rel="stylesheet" href="icon-font.css">
  10. </head>
  11. <body>
  12. <!-- 整个区域:搞个大盒子在浏览器中布局 -->
  13. <div class="box">
  14. <!-- 菜单区域:搞个nav包起来菜单项,方便进行布局 -->
  15. <nav class="menu">
  16. <!-- 第一个选项卡菜单class默认为激活,data-index用于后面辅助查找,以便更改class属性值。 -->
  17. <a href="" class="active" data-index="1">词典查询<b></b></a>
  18. <!-- 后面这两个没有class,后续通过js来增加并根据点击和悬停来修改对应的值。 -->
  19. <a href="" data-index="2">全部词典<b></b></a>
  20. <a href="" data-index="3">最近更新<b></b></a>
  21. </nav>
  22. <!-- 内容区域:搞得div布局 -->
  23. <div class="content">
  24. <!-- 第一部分内容:对应菜单”词典查询“,class的active值也是对应菜单的active,需要js来同步操作 -->
  25. <div class="content-block block1 active" data-index="1">
  26. <!-- 第一部分内容用dl来布局 -->
  27. <dl>
  28. <!-- 表头 -->
  29. <dt>
  30. <h2>编程词典</h2>
  31. <span>服务码农的在线技术手册</span>
  32. </dt>
  33. <!-- 第一行 -->
  34. <dd class="row1">
  35. <!-- 搞个div布局 -->
  36. <div class="search">
  37. <span class="iconfont icon-fangdajing"></span>
  38. <input type="text" value="请输入搜索内容" class="text1" name="keywords"
  39. onclick="if(this.value == '请输入搜索内容') this.value='';"
  40. onblur="if(this.value == '') this.value='请输入搜索内容'">
  41. <input type="submit" value="搜索" name="" onclick="alert('搜索测试成功')" class="submit1">
  42. <!-- <button onclick="alert('搜索测试成功')" class="submit2">搜索</button> -->
  43. </div>
  44. </dd>
  45. <!-- 第二行 -->
  46. <dd class="row2">
  47. <!-- 搞个div布局 -->
  48. <div class="RMsearch">
  49. <em>热门搜索:</em>
  50. <span>
  51. <a href="">PHP</a>
  52. <a href="">MySQL</a>
  53. <a href="">jQuery</a>
  54. <a href="">HTML</a>
  55. <a href="">CSS</a>
  56. </span>
  57. </div>
  58. </dd>
  59. </dl>
  60. </div>
  61. <!-- 第二部分内容 -->
  62. <div class="content-block block2" data-index="2">
  63. <!-- 第二部分内容用ul布局 -->
  64. <ul>
  65. <!-- 每个小块内容都用li包起来 -->
  66. <li>
  67. <!-- 小块内容放在一整个链接里 -->
  68. <a target="_blank" href="" title="" class="aBlack">
  69. <!-- 链接内部放一个dl -->
  70. <dl>
  71. <dt>
  72. 【学习 PHP】
  73. </dt>
  74. <dd>
  75. <span>
  76. <img src="./static/img/php.png" alt="" style="display: block;">
  77. </span>
  78. <em>PHP一种被广泛应用的开...</em>
  79. </dd>
  80. </dl>
  81. </a>
  82. </li>
  83. <li>
  84. <!-- 小块内容放在一整个链接里 -->
  85. <a target="_blank" href="" title="" class="aBlack">
  86. <!-- 链接内部放一个dl -->
  87. <dl>
  88. <dt>
  89. 【学习 ThinkPHP】
  90. </dt>
  91. <dd>
  92. <span>
  93. <img src="./static/img/thinkphp.png" alt="" style="display: block;">
  94. </span>
  95. <em>ThinkPHP 是一个...</em>
  96. </dd>
  97. </dl>
  98. </a>
  99. </li>
  100. <li>
  101. <!-- 小块内容放在一整个链接里 -->
  102. <a target="_blank" href="" title="" class="aBlack">
  103. <!-- 链接内部放一个dl -->
  104. <dl>
  105. <dt>
  106. 【学习 Laravel】
  107. </dt>
  108. <dd>
  109. <span>
  110. <img src="./static/img/laravel.png" alt="" style="display: block;">
  111. </span>
  112. <em>Laravel是一套简洁...</em>
  113. </dd>
  114. </dl>
  115. </a>
  116. </li>
  117. <li>
  118. <!-- 小块内容放在一整个链接里 -->
  119. <a target="_blank" href="" title="" class="aBlack">
  120. <!-- 链接内部放一个dl -->
  121. <dl>
  122. <dt>
  123. 【学习 HTML】
  124. </dt>
  125. <dd>
  126. <span>
  127. <img src="./static/img/html.png" alt="" style="display: block;">
  128. </span>
  129. <em>html是HyperTe...</em>
  130. </dd>
  131. </dl>
  132. </a>
  133. </li>
  134. <li>
  135. <!-- 小块内容放在一整个链接里 -->
  136. <a target="_blank" href="" title="" class="aBlack">
  137. <!-- 链接内部放一个dl -->
  138. <dl>
  139. <dt>
  140. 【学习 CSS】
  141. </dt>
  142. <dd>
  143. <span>
  144. <img src="./static/img/css.png" alt="" style="display: block;">
  145. </span>
  146. <em>层叠样式表(英文全称:C...</em>
  147. </dd>
  148. </dl>
  149. </a>
  150. </li>
  151. <li>
  152. <!-- 小块内容放在一整个链接里 -->
  153. <a target="_blank" href="" title="" class="aBlack">
  154. <!-- 链接内部放一个dl -->
  155. <dl>
  156. <dt>
  157. 【学习 MySQL】
  158. </dt>
  159. <dd>
  160. <span>
  161. <img src="./static/img/mysql.png" alt="" style="display: block;">
  162. </span>
  163. <em>PHP一种被广泛应用的开...</em>
  164. </dd>
  165. </dl>
  166. </a>
  167. </li>
  168. <li>
  169. <!-- 小块内容放在一整个链接里 -->
  170. <a target="_blank" href="" title="" class="aBlack">
  171. <!-- 链接内部放一个dl -->
  172. <dl>
  173. <dt>
  174. 【学习 HTML5】
  175. </dt>
  176. <dd>
  177. <span>
  178. <img src="./static/img/html5.png" alt="" style="display: block;">
  179. </span>
  180. <em>HTML5它的综合性功能...</em>
  181. </dd>
  182. </dl>
  183. </a>
  184. </li>
  185. <li>
  186. <!-- 小块内容放在一整个链接里 -->
  187. <a target="_blank" href="" title="" class="aBlack">
  188. <!-- 链接内部放一个dl -->
  189. <dl>
  190. <dt>
  191. 【学习 CSS3】
  192. </dt>
  193. <dd>
  194. <span>
  195. <img src="./static/img/css3.png" alt="" style="display: block;">
  196. </span>
  197. <em>CSS即层叠样式表(Ca...</em>
  198. </dd>
  199. </dl>
  200. </a>
  201. </li>
  202. </ul>
  203. </div>
  204. <div class="content-block block3" data-index="3">
  205. <div>
  206. <a target="_blank" href="">
  207. php array_diff_assoc()函数
  208. </a>
  209. <a target="_blank" href="">
  210. php array_merge_recursive()函数
  211. </a>
  212. <a target="_blank" href="">
  213. TCP/IP 邮件
  214. </a>
  215. <a target="_blank" href="">
  216. TCP/IP 协议
  217. </a>
  218. <a target="_blank" href="">
  219. TCP/IP 寻址
  220. </a>
  221. <a target="_blank" href="">
  222. Web Forms - 数据库连接
  223. </a>
  224. <a target="_blank" href="">
  225. Web Forms - ArrayList 对象
  226. </a>
  227. <a target="_blank" href="">
  228. Web Forms - Button 控件
  229. </a>
  230. </div>
  231. </div>
  232. </div>
  233. </div>
  234. <script>
  235. const menu = document.querySelector('.menu');
  236. // console.log(menu);
  237. menu.addEventListener('click', show, false);
  238. menu.addEventListener('mouseover', show, false);
  239. function show(){
  240. // 禁用超链接跳转
  241. event.preventDefault();
  242. const btns = [...event.currentTarget.children];
  243. const contents = document.querySelectorAll('.content-block');
  244. // console.log(ul);
  245. // 1. 标签间切换:去掉原来的高亮,增加新选择的标签高亮。
  246. btns.forEach(item => item.classList.remove('active'));
  247. event.target.classList.add('active');
  248. // 2. 内容切换与标签切换基本一直,多一个data-index查询过程
  249. contents.forEach(item => item.classList.remove('active'));
  250. // contents.forEach(item =>{
  251. // if(item.dataset.index === event.target.dataset.index){
  252. // item.classList.add('active');
  253. // }
  254. // });
  255. [...contents].find(item => item.dataset.index === event.target.dataset.index).classList.add('active');
  256. }
  257. </script>
  258. </body>
  259. </html>

CSS代码(test.css),必要地方都有注释。

  1. * {
  2. margin:0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. a {
  7. color: #555;
  8. text-decoration: none;
  9. }
  10. li {
  11. list-style: none;
  12. }
  13. .box {
  14. font-size: 10px;
  15. background: #ffffff; border-radius: 12px; margin-top:4em;
  16. width: 980px;
  17. height: 304px;
  18. border: 1px red solid;
  19. margin: 32px auto;
  20. }
  21. .box .menu {
  22. border-bottom: 1px solid #f6f6f6; margin: top 20px;
  23. width: 980;
  24. height: 39px;
  25. display: grid;
  26. grid-template-columns: repeat(3,1fr);
  27. text-align: center;
  28. line-height: 32px;
  29. /* border: solid 5px coral; */
  30. border-radius: 12px 12px 0 0;
  31. }
  32. .box .menu .active {
  33. color: red;
  34. background-color: #eee;
  35. /* border-radius: 12px 12px 0 0; */
  36. }
  37. .box .menu .active:nth-of-type(1) {
  38. border-radius: 12px 0 0 0;
  39. }
  40. .box .menu .active:nth-of-type(2) {
  41. border-radius: 0;
  42. }
  43. .box .menu .active:nth-of-type(3) {
  44. border-radius: 0 12px 0 0 ;
  45. }
  46. /* .box .menu .active .active {
  47. background-color: red;
  48. } */
  49. .box .menu .active b{
  50. display: block;
  51. background-color: red;
  52. width:18px; height:1px; margin: auto; margin-top:1px;
  53. }
  54. .box .content {
  55. width: 978px;
  56. height: 244px;
  57. }
  58. .box .content-block{
  59. padding: 10px;
  60. display: none;
  61. }
  62. .box .content-block.active {
  63. display: block;
  64. background-color: #ffffff;
  65. }
  66. .box .block1 dl {
  67. width: 800px;
  68. }
  69. .box .block1 dl dt {
  70. text-align: center;
  71. margin-top: 35px;
  72. }
  73. .box .block1 dl dt h2 {
  74. font-size: 20px; height: 24px; line-height: 24px; overflow: hidden; color: #333333; font-weight: bold;
  75. }
  76. .box .block1 dl dt p {
  77. height: 18px; line-height: 18px; overflow: hidden; color: #666666; margin-top:14px;
  78. }
  79. .box .block1 dl .row1 {
  80. width: 800px; height: 60px; border-radius: 6px; background: #fef6f6; margin-top:30px;
  81. }
  82. .box .block1 dl .row1 .search {
  83. display: flex;
  84. height: 60px;
  85. place-content: space-between;
  86. }
  87. .box .block1 dl .row1 .search .icon-fangdajing {
  88. /* background-color: red; */
  89. font-size:2px;
  90. color: #ccc;
  91. width: 50px;
  92. text-align: center;
  93. line-height: 60px;
  94. /* position: relative;
  95. right: -15px;
  96. top: 25px; */
  97. }
  98. .box .block1 dl .row1 .search .icon-fangdajing:hover {
  99. cursor: pointer;
  100. }
  101. .box .block1 dl .row1 .text1 {
  102. /* padding-left: 20px; */
  103. width: 800px;
  104. background: none;
  105. border: none;
  106. outline: none;
  107. /* margin-left:10px; */
  108. color: #999999;
  109. }
  110. .box .block1 dl .row1 .submit1 {
  111. width: 90px;
  112. border: none;
  113. /* background: none; */
  114. background: #f11717;
  115. border-radius: 0px 6px 6px 0px; font-size: 16px;
  116. color: #ffffff; font-weight: bold;
  117. /* outline: none; */
  118. cursor: pointer;
  119. }
  120. .box .block1 dl .row2 {
  121. width: 800px; height: 32px; overflow: hidden; margin-top:30px;
  122. }
  123. .box .block1 dl .row2 .RMsearch {
  124. display: flex;
  125. place-content: space-around;
  126. }
  127. .box .block1 dl .row2 .RMsearch em {
  128. line-height: 32px;
  129. width: 70px;
  130. font-weight: normal;
  131. font-style: normal;
  132. }
  133. .box .block1 dl .row2 .RMsearch span {
  134. display: flex;
  135. width: 720px;
  136. height: 32px;
  137. }
  138. .box .block1 dl .row2 .RMsearch span a {
  139. /* height: 32px; */
  140. box-sizing: border-box; border: 1px solid #e6e6e6;
  141. padding: 0px 20px; border-radius: 100px; line-height: 32px; color: #999999; text-decoration: none;
  142. margin-right:20px;
  143. }
  144. .box .block1 dl .row2 .RMsearch span a:hover{
  145. border: 1px solid #f11717; color: #f11717;
  146. }
  147. .box .block2 ul {
  148. width: 900px;
  149. height: 242px;
  150. margin: auto;
  151. display: grid;
  152. grid-template-columns: repeat(4,1fr);
  153. place-content: space-around;
  154. }
  155. .box .block2 ul li {
  156. width:198px; height: 95px;
  157. padding-left: 2.5px;
  158. /* width:400px; height: 300px; */
  159. /* border: 1px solid red; */
  160. background: #f7f8fa;
  161. border-radius: 3px;
  162. /* padding-top: 12px; */
  163. /* margin: 27px 0px 0px 34px; */
  164. display: grid;
  165. /* grid-auto-flow: row; */
  166. /* grid-template-columns: repeat(2,100px); */
  167. /* place-content: space-around space-around; */
  168. /* place-items: start start; */
  169. }
  170. .box .block2 ul li a {
  171. /* background-color: blue; */
  172. /* border: 1px solid blue; */
  173. display:grid;
  174. }
  175. /* 设置dl宽度,dl网格化 */
  176. .box .block2 ul li a dl {
  177. width: 160px; margin: auto;
  178. display: grid;
  179. }
  180. /* 设置dt */
  181. .box .block2 ul li a dl dt {
  182. height: 18px; line-height: 18px; overflow: hidden; font-weight: bold;
  183. }
  184. /* 设置dd拉开点距离,dd网格化 */
  185. .box .block2 ul li a dl dd {
  186. margin-top:10px;
  187. display: grid;
  188. width: 160px;
  189. height: 40px;
  190. grid-template-columns: 40px 1fr;
  191. }
  192. /* 设置img */
  193. .box .block2 ul li a dl dd span img{
  194. width: 38px; height: 38px; border-radius: 100px; margin-top:3px;background-color: green;
  195. }
  196. /* 设置em */
  197. .box .block2 ul li a dl dd em {
  198. width: 110px; height: 40px; font-size: 12px; color: #999999; overflow: hidden; height: 40px; line-height: 22px;
  199. /* background-color: blue; */
  200. }
  201. .box .block3 {
  202. background-color: red;
  203. width: 900px;
  204. height: 215px;
  205. margin: auto;
  206. overflow: hidden;
  207. margin-top:15px;
  208. }
  209. .box .block3 div {
  210. display: grid;
  211. grid-template-columns: repeat(4,1fr);
  212. }
  213. .box .block3 a {
  214. height: 40px; background: #f7f8fa;
  215. padding: 0px 20px; border-radius: 100px; line-height: 40px; color: #333333;
  216. text-decoration: none; margin: 30px 13px 0px 0px;
  217. }
  218. .box .block3 a:hover {
  219. background: #f11717; color: #ffffff;
  220. }

仿写效果如下:

四、一些数组方法实例演示

1. 数组的拆分和转换

‘…’ 和Array.from()
把一个数组拆开成单个元素

  1. let arr = [1, 2, 3, 4, 5];
  2. //打印原数组
  3. console.log(arr);
  4. //拆成一组单个值
  5. console.log(...arr);
  6. //将一组单个值重新组成数组
  7. console.log([...arr]);


此方法也适用类数组对象,但对没有迭代器接口的对象不适用。

  1. let obj = {
  2. 0:1,
  3. 1:2,
  4. 2:3,
  5. length:3
  6. };
  7. console.log(obj);
  8. console.log(...obj);


可以采用Array.from()来拆除这组单值

  1. let objArr = {
  2. 0:1,
  3. 1:2,
  4. 2:3,
  5. length:3
  6. };
  7. console.log(objArr);
  8. console.log(...Array.from(objArr));

2. 数组元素的删除和增加

2.1 shift和push

利用shift和push完成队列功能

  1. let arr = [1, 2, 3, 4, 5];
  2. console.log(arr);
  3. arr.shift();
  4. arr.push(10);
  5. console.log(arr);

2.2 fill

fill() 方法用一个固定值填充一个数组中从起始索引到终止索引内的全部元素。不包括终止索引。

  1. const arr1 = [1, 2, 3, 4];
  2. // 用0填充数组,从索引2开始填充直至索引4-1,也就是索引3,也就是结尾。
  3. console.log(arr1.fill(0, 2, 4));
  4. // 用5填充数组,从索引1开始直到最后。
  5. console.log(arr1.fill(5, 1));
  6. // 用6填充数组,直到最后。
  7. console.log(arr1.fill(6));

3. 数组的迭代方法

foreach,map
every,some
filter,find,findindex
reduce
entry

3.1 foreach和map

foreach

forEach() 方法对数组的每个元素执行一次给定的函数。

  1. let arr = [1, 2, 3, 4, 5];
  2. let res = arr.forEach((value,index,arr) =>{
  3. console.log(index,value,arr);
  4. });

map

foreach()没有返回值,map()与其基本一样,但有返回值。

  1. res = arr.map((value,index,arr) =>{
  2. console.log(index,value,arr);
  3. return value*2;
  4. });
  5. console.log(res);

3.2 every和some

被称为断言函数,用来做判断用。
every() 方法测试一个数组内的所有元素是否都能通过某个指定函数的测试。它返回一个布尔值。
some() 方法测试数组中是不是至少有 1 个元素通过了被提供的函数测试。它返回的是一个 Boolean 类型的值。

  1. console.log(arr);
  2. // 数组成员的值是否每个都小于2
  3. console.log(arr.every(item => item< 2));
  4. // 数组成员的值有都小于2的
  5. console.log(arr.some(item => item<2));

3.3 filter和find、findindex

filter

filter() 方法创建一个新数组,其包含通过所提供函数实现的测试的所有元素。

  1. // filter返回符合条件值组成的新数组
  2. console.log(arr.filter(item => item<4));
  3. // 只返回符合条件的第一个值
  4. console.log(arr.filter(item => item<4)[0]);

find、findindex

find() 方法返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined。
findIndex()方法返回数组中满足提供的测试函数的第一个元素的索引。若没有找到对应元素则返回-1。

  1. console.log(arr);
  2. // 返回第一个符合条件的
  3. console.log(arr.find(item => item<4));
  4. // 返回符合条件值得索引
  5. console.log(arr.findIndex(item => item<4));

3.4 reduce

归并的效果
reduce(param1,param2)
param1,回调函数,函数还有四个参数分别累加值(必选),数组当前值(必选),数组索引(可选),数组本身(可选)
param2,累加的初始值

  1. console.log(arr);
  2. // reduce第一个参数是回调函数,第二个是累加初始值,即acc = 10.cur为当前数组值。
  3. res = arr.reduce((acc, cur, index, arr) => acc + cur,10);
  4. // 10(acc)+1(cur)+2(cur)+3(cur)+4(cur)+5(cur)=25
  5. console.log(res);

3.5 entry

entry()方法返回一个新的Array Iterator对象,该对象包含数组中每个索引的键/值对。

  1. const arr1 = ['a', 'b', 'c'];
  2. const iterator1 = arr1.entries();
  3. console.log("iterator长这样:",iterator1);
  4. console.log("iterator.next()长这样:", iterator1.next());
  5. console.log("iterator.next().done没开始遍历时的值:", iterator1.next().done);
  6. console.log(iterator1.next().value);
  7. console.log(iterator1.next().value);
  8. console.log(iterator1.next().value);
  9. console.log("这里就越界了:", iterator1.next().value);
  10. console.log("iterator.next().done遍历完的值:", iterator1.next().done);

4. 数组的排序

  1. let arr = [1, 10, 20, 6];
  2. console.log(arr);
  3. // sort默认将数组成员当成字符串进行排序,用asii码值。
  4. console.log(arr.sort());
  5. // sort升序排序
  6. console.log(
  7. arr.sort(((a,b)=> a -b))
  8. );


反过来使用b-a就是降序,就不展示效果了。

5. 数组转字符串

join

  1. let arr = [1, 10, 20, 6];
  2. // alert弹窗的效果就是数组转换的字符串
  3. alert(arr);
  4. // join效果与alert转化的效果一样,默认是逗号分割的字符串。
  5. console.log(arr.join());
  6. // 跟换成其他符号
  7. console.log(arr.join('*'));

弹窗

join的效果

6. 数组的截取和拼接

6.1 slice

  1. let arr = [1, 2, 3, 4, 5, 6, 7, 8 , 9, 10, 20];
  2. console.log(arr);
  3. console.log('截取2-4:');
  4. console.log(arr.slice(2,5));
  5. console.log('截取从2到最后:');
  6. console.log(arr.slice(2));
  7. console.log('截取倒数第四到倒数第六:');
  8. console.log(arr.slice(-6,-3));

6.2 splice

  1. console.log('原数组如下:');
  2. console.log(arr);
  3. console.log('从数组索引1开始拿出来两个元素:');
  4. console.log(arr.splice(1,2));
  5. console.log('原数组相当于删除了两个:');
  6. console.log(arr);
  7. console.log('从数组索引1开始再拿出来两个元素,同时把a,b放进去:');
  8. console.log(arr.splice(1,2,'a','b'));
  9. console.log('原数组相当于更新了两个值:');
  10. console.log(arr);
  11. console.log('从数组索引1开始拿出来0个元素,同时把a,b放进去:');
  12. console.log(arr.splice(1,0,'a','b'));
  13. console.log('原数组相当于插入了两个值:');
  14. console.log(arr);

6.3 concat

concat() 方法用于合并两个或多个数组。此方法不会更改现有数组,而是返回一个新数组。

  1. const arr1 = ['a', 'b', 'c'];
  2. console.log("arr1:",arr1);
  3. const arr2 = ['d', 'e', 'f'];
  4. console.log("arr2:",arr2);
  5. const arr3 = arr1.concat(arr2);
  6. console.log("拼接arr1和arr2的结果:", arr3);

6.4 copyWithin

copyWithin() 方法浅复制数组的一部分到同一数组中的另一个位置,并返回它,不会改变原数组的长度。

  1. const arr1 = ['a', 'b', 'c', 'd', 'e'];
  2. console.log(arr1);
  3. // 把第3个数组元素值复制到第0个数组元素开始的地方
  4. console.log(arr1.copyWithin(0, 3, 4));
  5. // 把第3至最后一个数组元素值复制到第0个数组元素开始的地方
  6. console.log(arr1.copyWithin(1, 3));
  7. // 把第2和第3个数组元素值复制到第1个数组元素开始的地方
  8. console.log(arr1.copyWithin(1, 2, 4));

6.5 flat

flat() 方法会按照一个可指定的深度递归遍历数组,并将所有元素与遍历到的子数组中的元素合并为一个新数组返回。即扁平化展开一个数组,解嵌套。

  1. // 嵌套数组的展开
  2. let arr1 = [1, 2, [3, 4]];
  3. console.log(arr1.flat());
  4. // 两层数组只能被展开一层
  5. let arr2 = [1, 2, [3, 4, [5, 6]]];
  6. console.log(arr2.flat());
  7. // 展开2层嵌套的数组
  8. let arr3 = [1, 2, [3, 4, [5, 6]]];
  9. console.log(arr3.flat(2));
  10. //使用 Infinity,可展开任意深度的嵌套数组
  11. let arr4 = [1, 2, [3, 4, [5, 6, [7, 8, [9, 10]]]]];
  12. console.log(arr4.flat(Infinity));

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post