zoukankan      html  css  js  c++  java
  • JavaScript入门第4天

    闭包:子函数可以使用父函数的局部变量
    <html>
        <head>
            <title>闭包    </title>
        <script>
            function aaa(){//父函数
                var a=12;
                     function bbb(){//子函数  闭包  可以引用父函数的局部变量
                     alert(a);         
                    }
                    bbb();
            }
            aaa();
        </script>
        </head>
        <body>
         
        </body>
    </html>

     

    隔行变色

    <html>
        <head>
            <title>隔行变色    </title>
        <script>
            window.onload=function(){
                var aLi=document.getElementsByTagName('li');
                for(var i=0;i<aLi.length;i++){
                 //i 0 1 2 3 4 5 ...
                    if(i%2==0){
                        aLi[i].style.background='grey';
                    }
                    else aLi[i].style.background='';
                }
            }
        </script>
        </head>
        <body>
         <ul>
                <li></li>
                <li></li>
                <li></li>
                <li></li>        
                <li></li>
                <li></li>        
                <li></li>        
                <li></li>
                <li></li>
         </ul>
        </body>
    </html>

    分秒转换器

    <html>
        <head>
            <title>分秒转换器    </title>
        <script>
            var s=1137;
            alert(parseInt(s/60)+'分'+s%60+'秒');
        </script>
        </head>
        <body>
        </body>
    </html>

    switch语句

    <html>
        <head>
            <title>switch语句</title>
        <script>
            var name="张三";
            var sex='';
            switch(sex){
                case '':
                alert(name+'先生,您好!');
                break;
                case '':
                alert(name+'女士,您好!');
                break;
                default:
                alert(name+'您好!');}
        </script>
        </head>
        <body>
        </body>
    </html>

    三目运算符

    条件?语句1:语句2

        <script>
          var a=12;//判断奇数偶数
          a%2==0?alert("偶数"):alert("奇数");
        </script>
  • 相关阅读:
    关于服务器并发量的简单计算
    重温Android和Fragment生命周期
    JVM类加载机制
    设计六大原则总结
    Android Navigation使用
    Android BrocastReceiver解析
    Android LiveData使用
    Android Service解析
    Activity的生命周期和启动模式
    Java四种引用
  • 原文地址:https://www.cnblogs.com/Yimi/p/6529349.html
Copyright © 2011-2022 走看看