私はいくつかの ajax リクエストを実行し、いくつかの新しいコンテンツをロードしています。私のホームページで私が使用している:
var App = function($el) {
this.$el = $el;
if ($.isFunction(this.init)) this.init();
}
App.prototype = {
init: function() {
console.log(this);
}
}
$(function() {
var $homepage = $('#app #projects');
$homepage = new App($homepage);
});
新しいコンテンツを読み込んだときにオブジェクトをリセットし、ホームページに戻ったときに新しいコンテンツを作成しようとしています。何か案は?