JS with

<script type="text/javascript">
    function Dog(){
        this.type="dog";
        this.tail=1;
        this.bark="wangwang";
    }
    var ahuang=new Dog();
    //alert(ahuang.bark);
    with(ahuang){
        alert(bark);
    }
</script>

with用于引用某js对象的已有属性

posted @ 2016-08-08 20:27  tuna-  阅读(158)  评论(0编辑  收藏  举报