jQuery,如何开始

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery,如何开始相关的知识,希望对你有一定的参考价值。

IIFE - Immediately Invoked Function Expression.
http://gregfranko.com/jquery-best-practices/#/7
http://gregfranko.com/jquery-best-practices/#/8
  1. // IIFE - Immediately Invoked Function Expression
  2. (function($, window, document) {
  3.  
  4. // The $ is now locally scoped
  5.  
  6. // Listen for the jQuery ready event on the document
  7. $(function() {
  8.  
  9. // The DOM is ready!
  10.  
  11. });
  12.  
  13. // The rest of the code goes here!
  14.  
  15. }(window.jQuery, window, document));
  16. // The global jQuery object is passed as a parameter
  17.  
  18. //--------------------------------------------------
  19.  
  20. // IIFE - Immediately Invoked Function Expression
  21. (function(yourcode) {
  22.  
  23. // The global jQuery object is passed as a parameter
  24. yourcode(window.jQuery, window, document);
  25.  
  26. }(function($, window, document) {
  27.  
  28. // The $ is now locally scoped
  29.  
  30. // Listen for the jQuery ready event on the document
  31. $(function() {
  32.  
  33. // The DOM is ready!
  34.  
  35. });
  36.  
  37. console.log('The DOM may not be ready');
  38.  
  39. // The rest of code goes here!
  40.  
  41. }));

以上是关于jQuery,如何开始的主要内容,如果未能解决你的问题,请参考以下文章

jQuery应用 代码片段

Visual Studio 2012-2019的130多个jQuery代码片段。

如何在 Reactjs 中添加丰富的代码片段?

markdown 在WordPress中使用jQuery代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

很实用的JQuery代码片段(转)