为什么jquery选择器不起作用?
查看
Views.Now = Backbone.View.extend({
template:"mytemplate",
initialize:function () {
var self = this;
this.$el.find(".content").hide(); // selector is not working
}
});
模板:
<div id="now">
<p class="loader">Waiting for connection</p>
<div class="content">
<button>hello world</button>
</div>
答案 0 :(得分:1)
只有在调用render()方法后才会呈现骨干视图。在此之前,视图的元素仍然是空的,因此选择器将找不到任何内容。