标签:style blog color io 使用 java ar strong div
一、Function添加新方法
如果在Function对象中添加一人新方法可以这样写:Function.porototype.method("方法名", function(){ 执行的内容 })
1 <script> 2 var Anim = function(){} 3 4 // 为Anim对象添加方法 5 Anim.mothod("start", function(){ ... }). 6 mothod("stop", function(){ ... }); 7 </script>
二、使用设计模式的好处
1、可维护性好:降低了模块间的耦合度.
2、性能:某些模式是起优化的作用,提高运行速度.
一、公有、私有、特权
标签:style blog color io 使用 java ar strong div
原文地址:http://www.cnblogs.com/couxiaozi1983/p/3983009.html