function Abstarct(id){
this.containerHolder = null;
if(typeof(id) == 'string') {
this.containerHolder = $("#" + id);
}
else {
this.containerHolder = id;
}
this.eventResponse = function(eventObj) {
}
}
function map(id){
this.base=Abstarct; //继承Abstarct
this.base(id); //调用构造方法
}