在我的主干函数中,我没有过滤器方法,所以我决定改用 'this.$el.append()', 'this.$el.html()' - 但替换 html() 不起作用. 我想我可以用新系列来代替孔视图。
它也试图制作 this.$el.empty(),但不起作用......所以我怎样才能从父级清除现有元素,并附加新一代元素..?
我的代码:
renderBoard:function(item){
var singleView = new taskListPhraseI.oneView({model:item}),
// after this, i need to make parent of the element should be empty...
board = this.$el.append(singleView.render()),
newBoard = board.find('.indBoard:last');
this.positionBoards(newBoard);
},
我怎样才能做到这一点?