首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴xd199153的代码贴全部
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
1
xd199153