0

私が次の見解を持っていると仮定します。

    var SampleView = Backbone.View.extend({
        initialize: function() {
            this.child_element = this.$('#new-catalog>button:first');                
        },
        events: {
            'click #new-catalog>button:first': function() { alert('clicked'); },
        },
        el: '#some-element',
    });

カスタムの子アイテムを簡単に選択できない場合(私のchild_element選択のよう#new-catalog>button:firstに、プロパティで再定義するのを避けてevents、代わりに参照することはできthis.child_elementますか?

もちろんできますthis.child_element.on('click', ...が、提供されているイベント辞書を使いたいです。ありがとう

4

0 に答える 0