var ctrl = {init: function () {this.a () ؛ this.b () ؛ } ، الاسم: "zs" ، a: function () {Alert ("aa") ؛ } ، b: function () {Alert ("bb") ؛ }} ؛ var str = ctrl.name ؛ console.info (str) ؛ // zs ctrl.init () ؛ // 弹出 AA ، BB