Blogger Information
Blog 7
fans 0
comment 0
visits 3468
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js函数和三种引入文档方式((slice函数和splice函数)-2019年01月16号
郑成功的博客
Original
722 people have browsed it

js数组的常用函数(slice()和splice())和js引入到html文档中的三种方式


实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js函数的应用和3种引入方式</title>
</head>
<body>
        <script type="text/javascript">
        //使用slice函数
        var a=['php',78,'fg','67','pp','dn'];
         b=a.slice(2,5);
          console.log(b);
         //使用splice()函数
         //删除一个数组元素
         c=a.splice(1,1);
         console.log(c);
         //添加一个数组元素
         d=a.splice(2,0,"pp");
         console.log(a);
         //更新一个数组元素
         e=a.splice(2,1,'ppp');
         console.log(a);
        </script>


        <script type="text/javascript">
        function check(a,b){
           var c;
           c=Number(a)+Number(b);
           alert(c);
        }
       
                  
      </script>
    <form action="">
       <input type="text" name="frist" size="3" value="">+
       <input type="text" name="sencnd" size="3" value="">=
       <!-- 1.直接在元素的事件方法属性上写js代码 -->
       <input type="text" name="three" size="5" value="" onfocus=check(frist.value,sencnd.value)>
  
    </form>
    <!-- 2.将js脚本写script标签中,仅限当前页面使用 -->

<!-- 3.将js脚本写到外部的js文件中 -->
<script src="static/js/js01.js"></script>
</body>
</html>

运行实例 »

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

slice() 函数返回数组部分元素

splice()函数 可以实现数组的增删更新操作

# js引入方式

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

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

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


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