文章列表
通过function的prototype实现面向对象
Function.prototype.extend=function(superCls){
var self_prototype=this.prototype;
var super_prototype=superCls.prototype;
this.super=super_prototype;
self_prototype.super=super_prototype;
for(var key in super_prototype){
if(!self_prototype[key]){
self_prototype[key ...