Twitter の Bootstrap と同じように、独自の接辞 (スパイ) メニューを作成したいと考えています。私は次のコードを持っています:
var Affix = Backbone.View.extend({
el: ".afx-list",
events: {
"scroll" : "onScroll"
},
initialize: function() {
console.log('affix initialized');
this.render();
},
render: function() {
},
onScroll : function() {
console.log('scrolling');
}
});
しかし、うまくいきません。バックボーンまたはアンダースコア (jQuery を使用しない) でのみ「スクロール」イベントを処理することは可能ですか?
また、私はこれを見ました:
_.bindAll(this, 'checkScroll');
$(window).scroll(this.checkScroll);
ただし、jQuery を使用します。