function Obj() {
this.listener = {
click: [],
edit: []
};//存放回调函数
this.height = 10;
this.width = 10;
this.addListener = function(type,func) {
if(this.listener[type] != undefined){
this.listener[type].push(func);
......................
阅读全部 | 2015年6月5日 15:33