jquery封装

var showLog = (function($){
   function aaa(){
       alert(1233444444);
   }
   aaa.show = function(){
       alert(123)   
   }
   aaa.alert = function(){
       alert(234);
   }  
   return aaa;
})(jQuery)
showLog.show();
simpleDialog.show() && simpleDialog.destroy();
if(simpleDialog.show()){
   simpleDialog.show()
}

 

posted @ 2015-04-16 10:00  猴--进化失败的程序猿  阅读(94)  评论(0编辑  收藏  举报