我们已经研究并尝试了所有我们能找到的东西,但看不出为什么按钮点击甚至没有触发。如果我们更改视图渲染 html 颜色,它会显示更改,因此视图渲染工作正常,但单击登录按钮时 -> 什么也没有。js 控制台中没有显示错误。试过了
button#login_button
和#login_button
-login_button
什么都没有。我们缺少什么?感谢任何帮助
SessionView = Backbone.View.extend({
el: ('#session'),
initialize:function () {
this.render();
},
render:function () {
if (!session) {
$(this.el).html(
"<button id=\"login_button\" class=\"login_button black\">"+
"Login"+
"</button>");
return this;
} else {
$(this.el).html(
"<button id=\"logout_button\" class=\"login_button black\">"+
"Logout</button>");
return this;
}
},
events: {
"click login_button" : "login",
"click logout_button": "logout"
},
login: function(){
alert("login");
console.log("login dialog");
//var loginView = new LoginView();
//loginView.render().showModal();
},
logout: function(){
alert("You Have Logged Out");
}
});