Turning off div wrap for Backbone.Marionette.ItemView

前端 未结 5 1793
闹比i
闹比i 2020-12-07 15:03

I\'m looking at the Angry Cats Backbone/Marionette tutorial posts here

http://davidsulc.com/blog/2012/04/15/a-simple-backbone-marionette-tutorial/

http://dav

5条回答
  •  眼角桃花
    2020-12-07 15:40

    Wouldn't it be cleaner to use vanilla JS instead of jQuery to accomplish this?

    var Layout = Backbone.Marionette.LayoutView.extend({
    
      ...
    
      onRender: function () {
        this.setElement(this.el.innerHTML);
      }
    
      ...
    
    });
    

提交回复
热议问题