<script> //创建工厂 var mbfactory={ createbike:function () { return new macbike(); } } function macbike() {} macbike.prototype={ constructor:macbike, getmb:function () { console.log('hahahahahah') } } var gg=mbfactory.createbike(); gg.getmb(); </script>
<script> //创建工厂 var mbfactory={ createbike:function () { return new macbike(); } } function macbike() {} macbike.prototype={ constructor:macbike, getmb:function () { console.log('hahahahahah') } } var gg=mbfactory.createbike(); gg.getmb(); </script>