Day42 JavaScript-2

JavaScript

学习网站:http://www.w3school.com.cn/html/index.asp
JavaScript由三部分组成:EMCAScript、DOM、BOM。
DOM是一个使程序和脚本有能力动态地访问和更新文档的内容,结构以及样式的平台和语言中立的接口。而BOM定义了JavaScript可以进行操作的浏览器的各个功能部件的接口。首先应该清楚的是两者皆为接口定义。

  • DOM是W3C的标准(所有浏览器公共遵守的标准)
  • BOM是各个浏览器厂商根据DOM在各自浏览器上的实现
  • window是BOM对象,而非JavaScript对象,不过恰好为EMCAScript中所定义的Global对象

01-js的常用方法和对象学习

<html>
    <head>
        <title>js的常用方法和对象学习</title>
        <meta charset="UTF-8"/> 
        <!--
            js的常用方法和对象学习:
                String对象:操作字符的。
                    使用:字符串.函数名即可
                    大小写转换:
                        toUpperCase()   转换大写
                        toLowerCase()   转换小写
                    字符串截取
                        substr(0,1)     从指定开始位置截取指定长度的子字符串
                        substring(0,1)  从指定位置开始到指定的结束位置的子字符串(含头不含尾)
                    查找字符位置
                        indexOf         返回指定字符第一次出现的位置。
                        lastIndexOf     返回指定字符最后一次出现的位置。
                Date对象:
                    使用: var 变量名=new Date();
                    注意:获取的是客户端的时间,不能作为系统功能校验的时间的。
                    参照:API
                Math对象:
                    使用:Math.函数名
                    random()
                    round()
                    ceil()
                    floor()
                Global对象
                    eval()
                    isNaN()
                    parseInt()
                    parseFloat()
        -->
        <script type="text/javascript">
            //String对象
            function testString(){
                //创建字符串
                var str="abcdefg";
                //大小写转换
                    alert(str.toUpperCase()+":"+str.toLowerCase());
                //字符串截取
                    alert(str.substr(0,1)+":"+str.substring(0,1));
                    alert(str.substr(0,1).toUpperCase()+str.substr(1,str.length));
            }
            //Date对象
            function testDate(){
                //创建日期对象
                var d=new Date();
                //操作日期和时间
                    //获取年份
                    alert(d.getYear());//返回从1900年起算距今的年分数
                    alert(d.getFullYear());//返回当前的年份
                    //获取月份
                    alert(d.getMonth()+1);//获取当前的月份数(注意:要+1)
                    //获取日期
                    alert(d.getDate());//返回当前的日期
                    //获取星期数
                    alert(d.getDay());//返回星期数,注意星期日返回0
                    //获取小时数
                    alert(d.getHours());//返回当前的小时数
                    //获取分钟数
                    alert(d.getMinutes());//返回当前的分钟数
                    //获取秒数  
                    alert(d.getSeconds());//返回当前的秒数
            }
            //Math对象
            function testMath(){
                //随机数字
                alert(Math.floor(Math.random()*9000+1000));//可以作为验证码

            }
            //Global对象
            function testGlobal(){
                //eval方法  将字符串转换为js代码执行
                eval("var a='123';");
                alert(a);
                //isNaN 判断Number强转后是否是数字。
                if(!isNaN(a)){
                    alert("是数字")
                }else{
                    alert("不是数字")
                }
            }
        </script>
    </head>
    <body>
        <h3>js的常用方法和对象学习</h3>
        <hr />
        <input type="button" id="" value="测试String对象" onclick="testString()"/>
        <input type="button" id="" value="测试Date对象" onclick="testDate()"/>
        <input type="button" id="" value="测试Math对象" onclick="testMath()"/>
        <input type="button" id="" value="测试Global对象" onclick="testGlobal()"/>

    </body>
</html>

02-js的window对象学习-方法(1)

<html>
    <head>
        <title>js的window对象学习</title>
        <meta charset="UTF-8"/>
        <!--
            问题:
                浏览器是由浏览器厂商来发明创造的,不同的浏览器厂商的浏览器对外
                提供的能让程序员直接调用的方法不同,这样就造成程序员在书写浏览器
                脚本语言时,需要同时写好几套,极大的阻碍了互联网的发展。
            解决:
                BOM浏览器对象模型:其实就一种规范
                    规范浏览器的对开发语言的支持。
            实现:
                浏览器对外提供对象:window对象
                作用:
                    封存了浏览器对外提供的操作HTML和其他特效的方法。
            使用:
                window对象的常用方法:
                    框体方法:
                        警告框:
                            alert("内容");
                        确认框:
                            confirm("内容");
                            提示用户是否继续进行选择的操作。
                            确定:true
                            取消:fasle
                        文本框:
                            prompt("提示语")
                            收集用户数据
                            如果用户书写了内容点击确定则返回用户数据
                            点击取消则返回null
                    定时方法:
                        定时执行:
                            作用:间隔指定的时间后执行指定的函数。
                            window.setTimeOut(函数,时间);//返回当前线程的id
                            中止执行方法:clearTimeOut(number id)
                        间隔执行:
                            作用:每间隔指定的时间后指定指定的函数
                            window.setInterval(函数,时间);//返回当前线程的id
                            中止执行方法:clearInterval(number id)
                    子页面方法:
                        window.open()
                            作用:打开子页面
                            使用: window.open("资源路径","newwindow","参数配置")
                                参数配置:"height=200, width=500, top=200,left=400, 
                                        toolbar=yes, menubar=yes, scrollbars=yes, 
                                        resizable=yes,location=yes, status=yes"
                        window.close()
                            作用:关闭子页面
                            注意:此函数只能关闭open打开的页面。
                window对象的常用属性:
                    opener属性
                        作用:实现在子页面中调用父页面的函数,保证父子页面的数据的一致性。
                        使用:
                            在父页面声明函数
                            在子页面使用window.opener.父页面函数名()调用即可。
                window对象的document对象
        -->
        <script type="text/javascript">
            //框体方法:
                //警告框
                function testAlert(){
                    window.alert("我是警告框");
                }
                //确认框
                function testConfirm(){
                    alert(window.confirm("你确定要离开我吗?"));
                }
                //文本框
                function testPrompt(){
                    alert(window.prompt("请输入昵称","例如:李白"));
                }
        //定时方法
            //定时执行
            function testSetTimeOut(){
                window.setTimeout(function(){
                    alert("我是定时执行");
                },2000);
            }
            //间隔执行
            function testSetInterval(){
                window.setInterval(function(){
                    alert("我是间隔执行");
                },2000);
            }
        //打开子页面
        function testOpen(){
            window.open("son.html","newwindow","height=400, width=600, top=200,left=400, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes,location=yes, status=yes");

        }
        //声明函数
        function testOpener(){
            alert("我是父页面函数");
        }
        </script>
    </head>
    <body>
        <h3>js的window对象学习</h3>
        <hr />
        <input type="button" id="" value="测试alert" onclick="testAlert()" />
        <input type="button" id="" value="测试确认框" onclick="testConfirm()" />
        <input type="button" id="" value="测试文本框" onclick="testPrompt()" />
        <hr />
        <input type="button" id="" value="测试定时执行-setTimeOut" onclick="testSetTimeOut()"/>
        <input type="button" id="" value="测试定时执行-setInterval" onclick="testSetInterval()"/>
        <hr />
        <input type="button" id="" value="测试打开子页面--open" onclick="testOpen()"/>
    </body>
</html>

son页面:

<html>
    <head>
        <title>子页面</title>
        <meta charset="UTF-8"/>
        <script type="text/javascript">
            var id;
            /*实现网页倒计时*/
            function testTime(){
                 id=window.setInterval(function(){
                    //获取font标签对象
                    var f=document.getElementById("num");
                    f.innerHTML=f.innerHTML-1
                    if(f.innerHTML==0){
                        window.close();
                    }
                },1000);
            }
            //停止指定的间隔执行函数
            function testClear(){
                window.clearInterval(id);
            }

            //使用opener属性调用父页面函数
            function test(){
                window.opener.testOpener();
            }


        </script>   
    </head>
    <body onload="testTime()">
        <h3>我是子页面</h3>
        <hr />
        请抓紧时间浏览器网页信息,本网页将在<font id="num" color="red" size="20px">5</font>秒后自动关闭.
        <br />
        <input type="button" id="" value="暂停" onclick="testClear()"/>
        <input type="button" id="" value="测试调用父页面函数--opener" onclick="test()"/>
        </body>
</html>

03-js的window学习-属性学习(2)

<html>
    <head>
        <title>window对象的属性学习</title>
        <meta charset="UTF-8"/>
        <!--
            window对象的属性学习
                opener属性
                location属性:
                    作用:地址栏属性,该属性是一个对象,封存了浏览器对地址栏的操作信息
                        例如:url
                    使用:
                        URL操作:
                            window.location.href//返回当前网页的URL信息
                            window.location.href="资源路径"//跳转指定的URL资源。
                        页面刷新:
                            作用:重新加载页面资源。
                            window.location.reload();
                -----------------------------------------------
                history属性:
                    forward()//前进,相当于浏览器中的前进功能
                    back()//后退,相当于浏览器中的后退功能
                    go()//跳转指定的历史记录
                screen属性
                    window.screen.width
                    window.screen.height
                    获取分辨率           
        -->
        <script type="text/javascript">
            //location属性
                //URL操作
                function testLocation(){
                    alert(window.location.href);//查看当前网页的URL信息
                    //window.location.href="http://www.jd.com";
                    window.location.href="02-js的window对象学习(1).html"//调转指定的资源
                }
                //页面刷新
                function testRefresh(){
                    window.location.reload();
                }
            //history属性
                function testHistory(){
                    //前进
                        //window.history.forward();//前进,相当于浏览器中的前进功能
                    //后退    
                        //window.history.back();//后退,相当于浏览器中的后退功能
                    //跳转指定历史记录  
                        window.history.go(0);   //跳转指定的历史记录
                }
            //Screen属性
                function testScreen(){
                    alert(window.screen.width+":"+window.screen.height);
                }
        </script>
    </head>
    <body>
        <h3>window对象的属性学习</h3>
        <hr />
        <input type="button" id="" value="测试location属性--URL操作" onclick="testLocation()"/>
        <input type="button" id="" value="测试location属性--刷新页面" onclick="testRefresh()"/>
        <hr />
        <input type="button" id="" value="测试history" onclick="testHistory()"/>
        <hr />
        <input type="button" value="测试Screen" onclick="testScreen()"/>
    </body>
</html>

04-js的window对象-document-获取HTML元素

<html>
    <head>
        <title>js的document对象学习</title>
        <meta charset="UTF-8"/>
        <!--
            documnet对象学习:
                解释:
                    document对象是浏览器对外提供的封存了当前运行的HTML文档信息的一个对象
                    通过此对象可以让我们灵活的操作HTML文档,达到修改,完善HTML文档的目的。
                使用:
                    document获取HTML元素对象
                        直接 方式:
                            通过ID
                                var 变量名=document.getElementById("uname");//返回指定的HTML元素对象
                                注意:
                                    此对象中封存了HTML元素标签的所有信息。   
                            通过name
                                var 变量名=document.getElementsByName("name属性值");
                                注意:
                                    获取的是相同name属性的HTML元素对象的数组。
                            通过标签名
                                var 变量名=document.getElementsByTagName("标签名");
                                注意:
                                    返回的是存储了该网页中指定的标签的所有对象的数组。
                        间接方式:
                            父子关系:
                                先获取父级节点(参照直接方式)
                                通过父级节点获取子节点数组
                                    var 变量名=父节点对象.childNodes;
                                    注意:
                                        子节点数组中会包含文本节点,可以使用nodeType属性
                                        筛选出来所有的HTML节点(nodeType值为1)
                            子父关系:
                                先获取子元素对象(参照直接方式)
                                通过子元素对象获取父元素对象
                                    var 变量名=子元素对象.parentNode
                            兄弟关系:
                                先获取当前元素
                                根据兄弟关系选择对应的获取方式
                                var 变量名=元素对象.previousSibling; //兄
                                var 变量名=元素对象.nextSibling;   //弟
                    document操作元素对象的属性
                    document操作元素对象的样式
                    document操作元素对象的文档结构
        -->
        <script type="text/javascript">
            //document获取HTML元素对象
                //通过ID获取
                function testById(){
                    var inp=window.document.getElementById("uname");
                    alert(inp.value);
                }
                //通过name获取
                function testByName(){
                    var favs=document.getElementsByName("fav");
                    alert(favs[0].value);
                }
                //通过标签
                function testByTagName(){
                    var inps=document.getElementsByTagName("input");
                    alert(inps.length); 
                }
        /*-------------------------------------------------*/
        //间接方式
            //父子关系                  
            function testGetChild(){
                    //先获取父级元素对象
                    var p=document.getElementById("showdiv");
                    //获取子元素对象数组
                    var clds=p.childNodes;
                    //遍历
                    var arr=[];
                    for(var i=0;i<clds.length;i++){
                        if(clds[i].nodeType==1){
                            arr.push(clds[i]);
                        }
                    }
                    alert(arr.length);
            }
            //子父关系
            function getParent(){
                //获取子元素对象
                var child=document.getElementById("un");
                //获取父元素对象
                var p=child.parentNode;
                alert(p)
            }
            //兄弟关系
                //兄关系
                function getPreEle(){
                    //获取当前元素对象
                    var un=document.getElementById("un");
                    //获取兄元素对象
                    var inp=un.previousSibling;
                    alert(inp);
                }
                //弟关系
                function getNextEle(){
                    //获取当前元素对象
                    var un=document.getElementById("un");
                    //获取兄元素对象
                    var inp=un.nextSibling;
                    alert(inp);
                }
        </script>
    </head>
    <body>
        <h3>js的document对象学习</h3>
        <hr />
        <input type="button" id="" value="测试通过ID获取" onclick="testById()"/>
        <input type="button" id="" value="测试通过name获取" onclick="testByName()"/>
        <input type="button" id="" value="测试通过标签名获取" onclick="testByTagName()"/>
        <hr />
        用户名:<input type="text" name="" id="uname" value="张三" /><br />
        爱好:<br />
            <input type="checkbox" name="fav" id="" value="1" />唱歌<br />
            <input type="checkbox" name="fav" id="" value="1" />跳舞<br />
            <input type="checkbox" name="fav" id="" value="1" />旅游<br />
            <input type="checkbox" name="fav" id="" value="1" />吃鸡<br />
        <hr />
        <input type="button" id="" value="测试父子关系" onclick="testGetChild()" />
        <input type="button" id="" value="测试子父关系" onclick="getParent()" />
        <input type="button" id="" value="测试兄关系" onclick="getPreEle()" />
        <input type="button" id="" value="测试弟关系" onclick="getNextEle()" />
        <hr />
        <div id="showdiv" style="border: solid 1px; background-color: orange; width: 300px; height: 300px;" >
            <input type="text" value="张三" id="un" style="margin: 10px;"/>
            <input type="text" value="李思思"style="margin: 10px;"/>
            <input type="text" value="王五"style="margin: 10px;"/>
            <input type="text" value="赵信"style="margin: 10px;"/>
            <input type="text" value="慎"style="margin: 10px;"/>
        </div>

    </body>
</html>

05-js的document操作元素属性

<html>
    <head>
        <title>操作元素属性</title>
        <meta charset="UTF-8"/>
        <!--
            获取HTML元素对象
            操作元素属性:
                获取:
                    元素对象.属性名//返回属性值
                修改:
                    元素对象.属性名=值
                注意:
                    不要修改标签的name和id属性
        -->
        <script type="text/javascript">
            //获取元素属性
            function getFieldData(){
                //获取HTML元素对象
                var inp=document.getElementById("uname");
                //获取元素属性
                alert(inp.type+":"+inp.name+":"+inp.id+":"+inp.value);
            }

            //修改元素属性
            function updateFiledData(){
                //获取HTML元素对象
                var inp=document.getElementById("uname");
                //修改元素属性
                inp.type="button";
                inp.id="un";

            }
        </script>
    </head>
    <body>
        <h3>操作元素属性</h3>
        <input type="button" id="" value="操作属性--获取" onclick="getFieldData()" />
        <input type="button" id="" value="操作属性--修改" onclick="updateFiledData()" />
        <hr />
        用户名:<input type="text" name="uname" id="uname" value="zhangsan" />
    </body>
</html>

06-js的doument操作元素内容

<html>
    <head>
        <title>操作元素内容</title>
        <meta charset="UTF-8"/>
        <!--
            获取HTML元素对象
            操作元素的内容
                获取:
                    元素对象.innerHTML
                        返回所有的内容包括HTML标签
                    元素对象.innerText
                        返回所有的文本内容,不包括HTML标签
                修改:
                    元素对象.innerHTML="新的内容"
                        HTML标签会被解析,覆盖原有内容
                    元素对象.innerText="新的内容"
                        HTML标签不会被解析,覆盖原有内容
                    注意:
                        如果在修改是需要保留原有内容,则使用:
                            元素对象名+="新的内容";
        -->
        <script type="text/javascript">
            //操作元素内容
                //获取
                function getData(){
                    //获取HTML元素对象
                    var showdiv=document.getElementById("showdiv");
                    //获取元素内容
                    alert(showdiv.innerHTML); //返回所有的内容包括HTML标签
                    alert(showdiv.innerText);//返回所有的文本内容,不包括HTML标签
                }
                //修改
                function updateData(){
                    //获取HTML元素对象
                    var showdiv=document.getElementById("showdiv");
                    //修改元素内容
                        //showdiv.innerHTML+="<u>你的,去前面探路的干活</u>";//HTML标签会被解析,覆盖原有内容
                        showdiv.innerText="<u>你的,去前面探路的干活</u>";//HTML标签不会被解析,覆盖原有内容
                }



        </script>
        <style type="text/css">
            #showdiv{
                border: solid 1px;
                width: 200px;
                height: 200px;
                background-color: orange;
            }
        </style>
    </head>
    <body>
        <h3>操作元素内容</h3>
        <input type="button" id="" value="操作元素内容---获取" onclick="getData()"/>
        <input type="button" id="" value="操作元素内容---修改" onclick="updateData()"/>
        <hr />
        <div id="showdiv">
            <b>皇军,前面有八路的干活儿</b>
        </div>
    </body>
</html>

07-js的document操作元素样式

<html>
    <head>
        <title>操作元素样式</title>
        <meta charset="UTF-8"/>
        <!--
            获取HTML元素对象
            操作样式:
                添加样式:
                    元素对象名.style.样式名=样式值
                修改样式:
                    元素对象名.style.现有样式名=新的样式值
                注意:
                    还以通过元素对象.className="类选择器名"来添加样式。
        -->
        <script type="text/javascript">
            //操作元素样式
                //添加样式
                function addCss(){
                    //获取元素对象
                    var showdiv=document.getElementById("showdiv");
                    //添加样式
                    showdiv.style.border="solid 1px";
                    showdiv.style.width="200px";
                    showdiv.style.height="200px";
                    showdiv.style.backgroundColor="orange";
                }
                //使用类选择器添加
                function addCssByClass(){
                    //获取元素对象
                    var showdiv=document.getElementById("showdiv");
                    //添加样式
                    showdiv.className="common";
                }
                //修改样式
                function updateCss(){
                    //获取元素对象
                    var showdiv=document.getElementById("showdiv");
                    //修改样式
                        showdiv.style.backgroundColor="darkcyan";
                }

                var arr=["red","darkcyan","orange","blue","gray"];
                //闪图
                function testColor(){
                    window.setInterval(function(){
                        //获取元素对象
                        var showdiv=document.getElementById("showdiv");
                        //随机
                        var num=Math.floor(Math.random()*5); 
                        //修改背景色
                        showdiv.style.backgroundColor=arr[num]
                    },100);
                }


        </script>
        <style type="text/css">
            .common{

                border: solid 1px;
                width: 200px;
                height: 200px;
                background-color: red;

            }
        </style>
    </head>
    <body>
        <h3>操作元素样式</h3>
        <input type="button" id="" value="添加样式---style" onclick="addCss()"/>
        <input type="button" id="" value="添加样式--classnName" onclick="addCssByClass()"/>
        <input type="button" id="" value="修改样式" onclick="updateCss()"/>

        <input type="button" id="" value="开始闪现模式" onclick="testColor()" />
        <hr />
        <div id="showdiv">

        </div>
    </body>
</html>

08-js的document操作文档结构

<html>
    <head>
        <title>操作文档结构</title>
        <meta charset="UTF-8"/>
        <!--
            文档结构:指的是HTML文档的树形结构。
            节点:HTML文档树中的基本元素单位称为一个节点。
            获取HTML元素对象
            操作文档结构
                新建节点:
                    var 变量名=document.createElement("标签名")//返回创建的HTML元素对象
                添加节点    
                    节点对象.appendChild(节点对象);
                删除节点
                    节点对象.removeChild(节点对象);
        -->
        <script type="text/javascript">
            //文档操作
                function operDocu(){
                    //获取元素对象
                    var showdiv=document.getElementById("showdiv");
                    //创建节点
                    var inp=document.createElement("input");
                        inp.type="file";//设置类型
                    //创建节点--换行符
                    var br=document.createElement("br");
                    //创建节点--删除按钮
                    var bt=document.createElement("input");
                        bt.type="button";
                        bt.value="删除";
                        bt.onclick=function(){
                            showdiv.removeChild(inp);
                            showdiv.removeChild(bt);
                            showdiv.removeChild(br);
                        }
                    //将节点添加到指定的节点中
                    showdiv.appendChild(inp);
                    showdiv.appendChild(bt);
                    showdiv.appendChild(br);
                }
        </script>
    </head>
    <body>
        <h3>操作文档结构</h3>
        <input type="button" id="" value="点击上传" onclick="operDocu()"/>
        <hr />
        <div id="showdiv" style="border: solid 1px;">

        </div>
    </body>
</html>

09-js-百度-360双搜索实现

<html>
    <head>
        <title>双搜</title>
        <meta charset="UTF-8"/>
        <style type="text/css">
        /*设置标题样式*/
            h1{
                font-size: 60px;
                margin-top:40px ;
            }
            /*设置div样式*/
            #showdiv{

                margin: auto;
                width: 700px;
                text-align: center;
                margin-bottom: 20px;
            }

            input[type=text]{
                width: 500px;
                height: 40px;
            }
            input[type=button]{
                width: 100px;
                height: 40px;
            }
        </style>
        <script type="text/javascript">
            //双搜
            function doubleSearch(){
                //获取搜索框对象
                var search=document.getElementById("search");
                var sval=search.value;
                //获取百度和360的搜索框
                var wd=document.getElementById("wd");
                var q=document.getElementById("q");
                //赋值
                wd.value=sval;
                q.value=sval;
                //提交表单
                    //获取表单对象
                    var bf=document.getElementById("bf");
                    var qf=document.getElementById("qf");
                    //提交
                    bf.submit();
                    qf.submit();
            }
        </script>
    </head>
    <body>
        <h1 align="center">欢迎使用百度-360双搜</h1>

        <!--声明form表单用来进行数据的提交-->
        <form action="http://www.baidu.com/s" method="get" target="_baidu" id="bf">
            <input type="hidden" name="wd" id="wd"/>

        </form>
        <form action="http://www.so.com/s" method="get" target="_q" id="qf">
            <input type="hidden" name="q" id="q"/>

        </form>
        <!--声明div用来划分搜索框-->
        <div id="showdiv">
            <input type="text" name="" id="search" value="" />
            <input type="button" id="" value="牛逼一下" onclick="doubleSearch()"/>
        </div>
        <!--声明div用来划分iframe-->
        <div id="div01">
            <iframe src="" width="49%" height="500px" name="_baidu"></iframe>
            <iframe src="" width="49%" height="500px" name="_q"></iframe>
        </div>


    </body>
</html>

小结

01-js的常用方法和对象学习
02-js的window对象学习-方法(1)
03-js的window学习-属性学习(2)
04-js的window对象-document-获取HTML元素
05-js的document操作元素属性
06-js的doument操作元素内容
07-js的document操作元素样式
08-js的document操作文档结构
09-js-双搜

小技能点:

1.$快捷键  document对象
2。 window.setInterval("timer()",1000);记得要写"";
3.用JS设置样式的时候    showdiv.style.border="solid 1px";  记得写""
4.<span></span> 行内元素
5.eval方法  将字符串转换为js代码执行
6.Prompt  提示框
7.使用opener属性调用父页面函数window.opener.testOpener();
8.//获取父元素对象
var p=child.parentNode;
9.//获取兄元素对象
                    var inp=un.previousSibling;
10.//获取弟元素对象
                    var inp=un.nextSibling;
11.//父子关系
                 function testGetChild(){
                    //先获取父级元素对象
                     var p=document.getElementById("showdiv");
                     //获取子元素对象数组
                     var clds=p.childNodes;
                     //遍历
                     var arr=[];
                     for(var i=0;i<clds.length;i++){
                        if(clds[i].nodeType==1){
                            arr.push(clds[i]);
                        }
                     }
                     alert(arr.length);
                 }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值