当前位置: 代码迷 >> JavaScript >> 打包属于自己的JS库
  详细解决方案

打包属于自己的JS库

热度:128   发布时间:2013-03-27 11:22:42.0
封装属于自己的JS库
(function(){
if(!window.project){
window.project = {};
}
window.project = {
init:function(){
alert("test");
},
show:function(){
alert("test2");
}

};
  })();
  调用:project.init();



/////////////////////////////////////////////////////////////////////////////
function Range(){}
Range.prototype = {
init:function(){
alert("XXX");
},
show:function(){
alert("YYY");
}
};

function RangeChildren(){}
RangeChildren.prototype = Range.prototype;
RangeChildren.prototype.add = function(){
alert("ADD");
};


调用:var rc = new RangeChildren();
rc.add();
rc.show();
  相关解决方案