摘要:
摘自:http://www.nowamagic.net/javascript/js_MethodsToCreateClass.php构造方法function coder(){ this.name = '现代魔法'; this.job = 'Web 开发者'; this.coding = function () { alert('我正在写代码'); }}var coder = new coder();alert(coder.name);coder.coding();工厂方法function createCoderFactory(){ var obj 阅读全文