jQuery 设计分析

wfQuery

wfQuery 是基于jQuery最常用方法封装而成的移动端基础库
【不兼容IE9以下版本浏览器】
本节从以下一些分组进行相关代码解读, 帮助理解jQuery的部分设计特点。

$include[js/init.js]     /*初始化方法*/
$include[js/extend.js]   /*extend方法定义*/
$include[js/util.js]     /*最常用的基本工具*/
$include[js/base.js]     /*原型基础方法*/
$include[js/query.js]    /*查询相关方法*/
$include[js/dom.js]      /*DOM操作相关方法*/
$include[js/attr.js]     /*属性操作相关方法*/
$include[js/css.js]      /*css操作相关方法*/
$include[js/event.js]    /*事件操作相关方法*/
$include[js/ajax.js]     /*ajax*/

你可能感兴趣的:(jQuery 设计分析)