Tag: 模块模式

了解JS Module Pattern的工作原理

我正在尝试理解jQuery中使用的js模块模式。 我已经编辑了几次,并试图在我的技能水平上做一个很好的练习(几个月新鲜的jquery)。 这篇文章没有直接的问题。 我更瞄准如何在大型网站中正确使用模块模式(以及jquery)的反馈和输入。 更新 :我添加了一些示例,以便全面了解所有编写内容的方法,并尝试覆盖任何陷阱。 /* Not all browsers works with console.log, so we want to make sure that console.log is defined. This defines the consol.log and send the messages into an alert. */ if(!window.console) console = { log: function(s) { alert(s); // alert since we dont have the firebug console } }; // […]