javascript 自动调用jQuery Global和Local(jQuery ready)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 自动调用jQuery Global和Local(jQuery ready)相关的知识,希望对你有一定的参考价值。

// IIFE - Immediately Invoked Function Expression
  (function(yourcode) {

    // The global jQuery object is passed as a parameter
  	yourcode(window.jQuery, window, document);

  }(function($, window, document) {

    // The $ is now locally scoped 

   // Listen for the jQuery ready event on the document
   $(function() {

     // The DOM is ready!

   });

   // The rest of the code goes here!

  }
  }));

以上是关于javascript 自动调用jQuery Global和Local(jQuery ready)的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ctrl 空格键上调用 jquery 自动完成功能?

jquery中的事件

jQuery——事件和AJAX

iframe调用子页面按子页面的内容自动调整高度

thymeleaf 引入js css 无效

使用 JavaScript 调用 jQuery 函数