<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对象的已有属性
时间: 2024-10-05 18:18:01
<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对象的已有属性