Skip to content

Instantly share code, notes, and snippets.

@zacker330
Created April 13, 2013 00:43
Show Gist options
  • Save zacker330/5376291 to your computer and use it in GitHub Desktop.
Save zacker330/5376291 to your computer and use it in GitHub Desktop.
模块化开发的js的基础 传入undefined是为了防止使用到了别人修改过的undefined
(function(window, $, undefined) {
var myFunc = function() {
// ...
}
window.myFunc = myFuc;
}) (window, jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment