(function( window, undefined ) {
    // 构造jQuery对象
var jQuery = function( selector, context ) {
        return new jQuery.fn.init( selector, context, rootjQuery );
    }
// 工具函数 Utilities
// 异步队列 Deferred
// 浏览器测试 Support
// 数据缓存 Data
// 队列 queue
// 属性操作 Attribute
// 事件处理 Event
// 选择器 Sizzle
// DOM遍历
// DOM操作
// CSS操作
// 异步请求 Ajax
// 动画 FX
// 坐标和大小
    window.jQuery = window.$ = jQuery;
})(window);
View Code

相关文章:

  • 2022-02-02
  • 2021-12-03
  • 2021-08-29
  • 2022-12-23
  • 2021-09-28
  • 2022-01-04
猜你喜欢
  • 2021-07-06
  • 2021-12-25
  • 2021-11-16
  • 2022-03-08
  • 2021-07-31
  • 2021-10-17
  • 2021-07-18
相关资源
相似解决方案