给定以下简单的html:
<div class="someContainer">
<h5>Some other information</h5>
</div>
以及以下主干视图:
var view = Backbone.View.extend({
events: {
'click .someContainer': performAction
},
performAction: function (evt) {
// Do things here
}
});
我发现自己做了很多下面的代码,这对我来说似乎是一种代码味道。我做错了什么还是有更好的方法来做到这一点?
...performAction: function (evt) {
// Check to see if the evt.target that was clicked is the container and not the h5 (child)
if ($(evt.target).hasClass('someContainer')) {
// Everything is ok, the evt.target is the container
} else {
// the evt.target is NOT the container but the child element so...
var $container = $(evt.target).parent('.someContainer');
// At this point I now have the correct element I am looking for
}
}
这很有效,但我不确定这是可以在任何地方编写的好代码。我可以制作一个我可以调用的方法,但我不确定它是否能真正纠正代码异味,它只是将它外包给其他地方。