バックボーンjsのWebサイトによると:
バックボーンの唯一のハード依存関係はUnderscore.js(> 1.3.1)です。RESTfulな永続性のために、Backbone.Routerによる履歴サポートとBackbone.ViewによるDOM操作には、json2.jsと、jQuery(1.4.2)またはZeptoのいずれかが含まれます。
以下のコードでテストしましたが、jQueryを削除すると、バックボーンビューでエラーがスローされます。
<html>
<head>
<title>asda</title>
<!--<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>-->
<script src="http://documentcloud.github.com/underscore/underscore.js"></script>
<script src="http://documentcloud.github.com/backbone/backbone.js"></script>
<script type="text/javascript" charset="utf-8" async defer>
SearchView = Backbone.View.extend({
initialize: function(){
alert("Alerts suck.");
}
});
// The initialize function is always called when instantiating a Backbone View.
// Consider it the constructor of the class.
var search_view = new SearchView;
</script>
</head>
<body>
</body>
</html>
Backbone.ViewとBackbone.RouterはjQueryなしでどのように機能しますか?