13

根据标题,主干视图中说的有什么区别(如果有的话):

this.$('.foo');

this.$el.find('.foo');

它们都返回元素并似乎将其范围限定为当前视图,但我已经看到使用这两种方法的示例。

谢谢

4

1 回答 1

23

区别完全没有。Backbone 源代码中的方法声明为:

$: function(selector) {
  return this.$el.find(selector);
}
于 2013-01-22T16:00:56.657 回答