<script>
function a(){
a.prototype.b=1;
}
var o = new a;
function t(){this.b=3;this.c=2}
a.prototype = new t;
alert(o.b);
alert(o.c);
</script>
当prototype写在自定义类内的时候,它就像Native Object的prototype 不能被覆盖
posted on 2007-10-22 00:07
汪杰 阅读(546)
评论(2) 编辑 收藏 引用