我正在尝试使用模块模式创建我的脚本并缓存我经常使用的选择器...但这不起作用。这样做的最佳方式是什么?
var s, login = {
settings: {
window: $(window),
menu: $("#menu"),
container: $('#container'),
login: $('#login'),
senha: $('#senha')
},
init: function() {
s = this.settings;
self = this;
s.window.bind('resize', function() {
self.adjusts();
});
this.adjusts();
},
adjusts: function() {
s.menu.height($(window).height());
}
};
$(function() {
login.init();
});
谢谢!