我已经遵循模块化设计模式很长一段时间了,发现它非常有用,因为它有助于代码的良好维护和将块分离为模块。
经常使用模块结构jQuery
导致我的大部分应用程序/代码遵循以下结构:
(function() {
var chat = {
websocket: new WebSocket("ws://echo.websocket.org/"),
that: this,
init: function() {
this.scrollToBottom();
this.bindEvents();
this.webSocketHandlers();
},
bindEvents: function() {
this.toggleChat();
this.filterPeople();
this.compose();
},
elements: {
indicator: $(".indicator"),
statusText: $(".status-text"),
chatHeadNames: $(".people li .name"),
filterInput: $("#filter-input"),
msgInput: $("#msg-input"),
sendBtn: $(".send")
},
...
...
...
filterPeople: function() {
var that = this;
this.elements.chatHeadNames.each(function() {
$(this).attr('data-search-term', $(this).text().toLowerCase());
});
},
...
...
};
chat.init();
})();
我想知道的是通过jQuery
作为单个变量的一部分引用我的所有元素是否chat.elements
是一种好习惯?
我的一部分告诉它确实是一次引用所有选择器并将它们缓存在变量中的好方法,以便可以使用缓存的变量(而不是多个 DOM 选择)完成对同一元素的多次使用。
我的另一部分告诉我,这可能是一种反模式,应该在需要时选择特定元素并在本地缓存。
我自始至终都使用了类似的结构,并且对代码的反应不一,但没有什么可靠的。任何帮助,将不胜感激。谢谢!