📜  (函数(g,d,a){})(窗口,文档,jQuery); - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:21.948000             🧑  作者: Mango

代码示例1
;(                                 // <---------------+
                                   //                 | encapsulate the function
  function($, window, document) {  // <--+ declare    | and call it passing three
                                   //    | anonymous  | arguments.
  }                                // <--+ function   |
                                   //                 |
)(jQuery, window, document);       // <---------------+