im starting to use Backbone.js and im trying to do somthing simple with javascript, which is show/hide divs. I get to show the div but i cannot hide it, i try many things, any idea? or could be it more sophisticated?
var Step1View = Backbone.View.extend({
el: $('body'),
events: {
'click #more': 'more',
'click #hide': 'hide',
},
initialize: function (){
_.bindAll(this, 'render', 'more', 'next', 'less');
this.render();
},
render: function (){
var self = this;
$(this.el).append("<a id='more'>Show more</a>");
$(this.el).append("<div id='show' style='display: none'>Div12</div>");
return this;
},
more: function (){
$('#more').text('Hide more');
$('#more').attr('id', '#hide');
$('#show').show();
},
less: function (){
$('#hide').text('Show more');
$('#show').hide();
},
});
Cheers
im starting to use Backbone.js and im trying to do somthing simple with javascript, which is show/hide divs. I get to show the div but i cannot hide it, i try many things, any idea? or could be it more sophisticated?
var Step1View = Backbone.View.extend({
el: $('body'),
events: {
'click #more': 'more',
'click #hide': 'hide',
},
initialize: function (){
_.bindAll(this, 'render', 'more', 'next', 'less');
this.render();
},
render: function (){
var self = this;
$(this.el).append("<a id='more'>Show more</a>");
$(this.el).append("<div id='show' style='display: none'>Div12</div>");
return this;
},
more: function (){
$('#more').text('Hide more');
$('#more').attr('id', '#hide');
$('#show').show();
},
less: function (){
$('#hide').text('Show more');
$('#show').hide();
},
});
Cheers
Share Improve this question edited Feb 18, 2012 at 18:57 ki0 asked Feb 18, 2012 at 18:51 ki0ki0 3772 gold badges5 silver badges15 bronze badges2 Answers
Reset to default 5You have a lot of problems here.
You're trying to bind an event to a non-existent hide
method, your events
should look like this:
events: {
'click #more': 'more',
'click #hide': 'less',
},
Your initialize
method is trying to bind a method, next
, which does not exist. Your initialize
should look more like this:
initialize: function (){
_.bindAll(this, 'render', 'more', 'less');
this.render();
},
Your more
method is setting the id
to #hide
but it should be hide
:
more: function (){
$('#more').text('Hide more').attr('id', 'hide');
$('#show').show();
},
Your less
method doesn't switch the id
back to more
:
less: function (){
$('#hide').text('Show more').attr('id', 'more');
$('#show').hide();
}
And you have a stray ma after less
which will make some browsers unhappy.
Demo: http://jsfiddle/ambiguous/8HkdT/
Swapping the id
attributes like that is a bit dodgy. You'd be better off with separate links that you show and hide along with the <div>
or just a single toggle button that does both the showing and hiding.
Backbone source code says:
// If `this.el` is a string, pass it through `$()`, take the first
// matching element, and re-assign it to `el`. Otherwise, create
// an element from the `id`, `className` and `tagName` properties.
Your code says: el: $('body')
, but it's enough to say el: 'body'
And since Backbone 0.9, you can use this.$el
instead of $(this.el)
:
http://documentcloud.github./backbone/#View-$el
And you probably wanted to write 'click #hide': 'less'
instead of 'click #hide': 'hide'
.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744869538a4598175.html
评论列表(0条)