2
可否請你告訴我如何從一個頁面導航到另一個主頁。 我想顯示按鈕第二HTML點擊它是如何可能如何將一個視圖移動到另一個視圖?
我那麼喜歡這樣的
events: {
'click #click':'moveTonext'
},
moveTonext: function(){
alert('---')
},
說。我電阻事件我做第二頁這樣的
define([
'jquery',
'underscore',
'backbone',
'text!templates/second.html'
], function ($, _, Backbone, statsTemplate) {
'use strict';
var secondView = Backbone.View.extend({
// Instead of generating a new element, bind to the existing skeleton of
// the App already present in the HTML.
el: '#todoapp',
// Compile our stats template
template: _.template(statsTemplate),
// Delegated events for creating new items, and clearing completed ones.
events: {
},
// At initialization we bind to the relevant events on the `Todos`
// collection, when items are added or changed. Kick things off by
// loading any preexisting todos that might be saved in *localStorage*.
initialize: function() {
this.render();
},
serialize: function() {
return {
message: 'world'
};
},
// Re-rendering the App just means refreshing the statistics -- the rest
// of the app doesn't change.
render: function() {
this.$el.html(this.template());
}
// Add a single todo item to the list by creating a view for it, and
// appending its element to the `<ul>`.
});
return secondView;
})
另一個HTML
<h1>second</h1>
這裏是我的獵人 http://plnkr.co/edit/fCXwSrroJP1l6BppjpmD?p=preview
請問您可以給予活板.. – user944513
請提供活塞或編輯活塞 – user944513
@ user944513我更新了答案以包含鏈接到活塞。 – Dethariel