我是Jquery和JavaScript的新手。我被要求使用现有代码添加新屏幕。
_initWidgets: function() {
this._super.apply(this, arguments);
this.sendScreenA = SendScreenA().appendTo(this.$el);
this.sendScreenB = SendScreenB().appendTo(this.$el);
return this;
},
以上代码根据选择正确生成两种屏幕。
我在上面的代码中添加了一个额外的条目来生成第三个屏幕。
this.sendScreenC = SendScreenC().appendTo(this.$el);
当我在上面添加了它的断行代码时,但如果我注释掉this.sendScreenB行它的工作正常。
有人可以指导我如何解决这个问题。