このコードの最初の行でエラーが発生していますplzhelpme 未定義のメソッド'extend'を呼び出せません
$(document).ready(function() {
var Router = Backbone.Router.extend({
routes: {
"foo/:bar": "paramtest",
"*action": "func"
},
func: function(action) {
alert(action);
},
paramtest: function(p) {
alert(p);
}
});
new Router();
Backbone.history.start();
});