我是Backbone.js的初学者。我只是想知道,是否可以在扩展的Backbone View函数中附加html?
SplitDialog: function() {
var self = this;
// appending a template
$(self.el).append(tpl.percentageSplitDialog());
// the below line does not work!
$(self.el).append('<div>Hello, I can append here!</div>');
...
}
如果是,如何以及为什么不能在函数中附加类似html的原因。任何解释都会非常有用。谢谢!