Blogger Information
Blog 4
fans 0
comment 0
visits 1379
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js数组的常用函数(slice()和splice()) 与js的三种引入方式 2019年1月16日15:46
戚仲欣杨梅家的博客
Original
445 people have browsed it

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

slice() 函数用于取值

splice()函数用于增删查改


实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    
    <title>Document</title>
</head>
<body>
        <!-- 1. js数组的常用函数(slice()和splice()) -->
        
        <script>  
        //slice()函数用来数组取值  
        var arr =[1,2,3,4,5,6]// 默认为0,1,2,3,4,5,
        
        arr.slice(2,4) //结果为 3,4 (最后一位不算)
        arr.slice(1,-3)//结果为 2,3 负数为倒数顺序。



        
        
        //splice()函数用于增删查改
        arr.splice(2,0,'js') //第一个参数表示位置, 第二个参数表示删除数量,第三个参数表示添加
        //返回值为删除内容
        arr.splice(4,2) //第四个位置删除2个数值
        //返回值为删除内容
        
        //更新操作, 就是在当前位置删除一个数值, 然后添加一个数值
        arr.splice(2,1,'你好')



        
        console.log(arr);
        

        //字符串 拆分成数组 
        var str ='html,css,js';

        var arr = str.split(',')
        
        arr
        </script>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例



⑵,js的三种引入方式

1直接在元素事件方法属性上写JS 代码。

2在当前页面写人标签 然后写代码,

3外部引用

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    
    <title>Document</title>
</head>
<body>
        js引入到html文档中的三种方式,举例说明

         1,直接在元素的事件方法属性上写js代码
         <h3 id='tips' onclick="console.log(id)">JS很好玩</h3>

         <form action="">
            <input type="text" name="site" value="php中文网">
            <button type="button" onclick="console.log(site.value)" >点我显示站点名称</button>
         </form>

         <form action="">
                <input type="text" name="username" placeholder="用户名">
                <button type="button" onclick="check(username)" >验证</button>
         </form>
         2,写在当前页面中,之适用于当前页面
         <script>
             //偷懒一下 先不写了,赶作业
             
         </script>
         外部引用
         <script src="js/js.js"></script>


</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

 

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