我正在尝试使用主干视图在页面上输出一些 h1 文本,但由于某种原因它不起作用。如果我在准备好的文档中使用它,我可以显示 h1,但在渲染函数中使用它时不能。
var HomeView = Backbone.View.extend({
el:'body',
intialize: function () {
this.render();
},
render: function () {
this.$el.empty();
this.$el.append("<h1>My first Backbone app</h1>"); // not showing on the page
return this;
}
})
$(document).ready(function () {
wineApp = new HomeView();
})