给定属性的流星事件选择器

Meteor event selector for a given attribute

这个 Meteor 模板事件只需要在具有属性 name=abcinput 元素中触发,有没有办法做到这一点?

'keyup input[name-attribute is abc??]': function (evt, template) {

};

比你想象的要简单:

'keyup input[name=abc]': function (evt, template) {

};