Blogger Information
Blog 11
fans 0
comment 0
visits 8526
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Javascript基础一-2019年1月16日22点10分
澜海的博客
Original
761 people have browsed it

作业要求

1. js数组的常用函数(slice()和splice())

2. js引入到html文档中的三种方式,举例说明

1.js数组的常用函数(slice()和splice())

获取部分元素,返回Array

var arr = [1,2,3,4,5,6]; // 返回从索引2到4之间元素(不含索引4)

console.log( arr.slice(1,4) );  // [2,3,4]

console.log( arr.slice(1,-2) );  // [2,3,4],尾部从-1开始

增加和删除元素,返回删除的元素数组

splice(开始索引, 要删除的数量(0表示不删除), 要添加的元素(多个逗号分开))

var arr = [1,2,3,4,5,6,7,8];

arr.splice(2,0,'a'); // 从第三个位置添加一个元素,非删除操作,返回空数组

console.log(arr);  // [1, 2, "a", 3, 4, 5, 6, 7, 8]

arr.splice(4,2);  // 从第5个位置删除2个,返回 [4, 5]

console.log(arr); // [1, 2, "a", 3, 6, 7, 8]

2.js引入方式

1.直接在元素的事件方法属性上写js代码

   <h3 id="tips" onclick="alert(this.id)">javascript好好玩</h3>

   <form action="">

       <input type="text" name="site" value="php中文网">

       <button type="button" onclick="alert(site.value)">显示站点</button>

   </form>

   <form action="">

       <input type="text" name="username" placeholder="用户名">

       <button type="button" onclick="check(username)">验证</button>

   </form>

   

2.将js脚本写script标签中,仅限当前页面使用

  <script>

   function check(username){

       if (username.value.length === 0){

           alert('用户名未输入');

       }else {

           alert (username.value);

       }

   }

   </script>

3.将js脚本写到外部的js文件中

<script src="static/js/js01.js"></script>

通过引入命令给从外部引入文件


Correction status:Uncorrected

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