摘要: 1 function baseObject(){2 this.shit = function(){ alert('fuck'); }3 }4 function abc(){5 baseObject.call(this);6 }7 var o = new abc();8 console.log(o.shit) 阅读全文
posted @ 2012-05-23 16:44 小猩猩君 阅读(178) 评论(0) 推荐(0) 编辑