$的用法有将近10种,也就是说,jQuery.fn.init这一个函数需要处理的情况有将近10种。那究竟都是哪些情况呢?如果想从它的源码直接看出来的话,那最好放弃。当然并不是说此路不通,只不过有更好的方法而已。
jQuery之所以这么受欢迎,其中一个原因是它的文档很齐全,这个时候果断可以去看它的API文档,请猛击这里
jQuery的API文档里面很详细地将各种情况都列了出来,可以看到,里面共列举了三大种、八小种情况。至于每种情况的作用、参数、返回值,可自行查看API说明,这里不赘述。
jQuery( selector [, context ] )
jQuery( selector [, context ] )
jQuery( element ) 把dom封装成jquery对象,常用的有$(this),xml数据也可以这么做$(data)
jQuery( elementArray )
jQuery( object )
jQuery( jQuery object ) clone jqueyr对象。
jQuery()
jQuery( html [, ownerDocument ] )
jQuery( html [, ownerDocument ] )
jQuery( html, attributes )
jQuery( callback )
jQuery( callback )
Binds a function to be executed when the DOM has finished loading.
$(function() {
// Document is ready
});