zoukankan      html  css  js  c++  java
  • javascript之with语句

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <script type="text/javascript">
    /*
        with语句:有了 With 语句,在存取对象属性和调用方法时就不用重复指定对象。
        格式:
            with(对象){
    
            }
    */
    
        with(document){
            for(var i = 0 ; i<5; i++){
                
                for(var j  =0 ; j<=i ; j++){
                    write("*&nbsp;");    
                }    
                write("<br/>");
            }
            write("<hr/>");
        }
    
    
        function Person(id , name){
            this.id = id;
            this.name = name;    
        }
        
        //创建一个对象
        var  p = new Person(110,"狗娃");
        
        
        with(p){
            document.write("编号:"+ p.id);
            document.write("姓名:"+ name);
        }
        
    </script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    <body>
    </body>
    </html>
  • 相关阅读:
    poj 3071 Football (概率dp)
    CF1408G Clusterization Counting
    2-sat
    线段树优化建图
    SP5971 LCMSUM
    [NOI2020]命运
    SP19149 INS14H
    Atcoder ARC-068
    CF908G New Year and Original Order
    (四)、Fiddler打断点
  • 原文地址:https://www.cnblogs.com/loaderman/p/10005791.html
Copyright © 2011-2022 走看看