Is it possible to use nested selectors in Meteor event maps?

后端 未结 1 402
忘掉有多难
忘掉有多难 2020-12-21 12:52

Here, I would like to select the .accept element from within the .header element. Is this possible? The documentation is inconclusive and I have tr

1条回答
  •  别那么骄傲
    2020-12-21 13:50

    What you shared will work assuming you don't have a conflict elsewhere. Try using the code below. The event fires only if you click the second div, as you want.

    template:

    
        {{> page}}
    
    
    
    

    js:

    if (Meteor.isClient) {
        Template.page.events({
            'click .header .accept': function(event) {
                console.log('accept clicked');
            }
        });
    }
    

    0 讨论(0)
提交回复
热议问题