1
我看到this關於在骨幹中的簡單視圖的小文章。但我嘗試加載在這樣一個模板,我自己.. does not工作:(骨幹視圖不渲染我的模板
我複製並粘貼代碼到我的文件,但沒有發生的一切都在這裏是我的代碼:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="js/vendor/jquery-1.7.1.js"></script>
<script src="js/vendor/underscore.js"></script>
<script src="js/vendor/backbone.js"></script>
</head>
<body>
<div id="search_container"></div>
<script type="text/javascript">
;(function(){
SearchView = Backbone.View.extend({
initialize: function(){
_.bindAll(this, 'render');
},
render: function(){
var template = _.template($("#search_template").html(), {});
$(this.el).html(this.template);
this.el.html(template);
}
});
var search_view = new SearchView({ el: $("#search_container") });
})(jQuery);
</script>
<script type="text/template" id="search_template">
<label>Search</label>
<input type="text" id="search_input" />
<input type="button" id="search_button" value="Search" />
</script>
</body>
</html>
包括所有的腳本是最新版本。什麼是我的失敗?
感謝大家誰願意幫我:)
yaaan