我有以下看法:
return Marionette.ItemView.extend({
el: '<section>',
template: JST['app/scripts/templates/grid.ejs'],
就是这样称呼的:
// a Layout
regions: {
grid: '#grid',
detail: '#detail'
},
onShow: function () {
var detailModel = new DetailModel();
var g = new GridView(detailModel);
this.grid.show(g);
}
问题是:如何摆脱周围的部分元素?我试图省略 el 属性,但这给了我以下看起来很奇怪的 div:
<div productname>
问候罗杰