jquery $ dollar符号用法总结

参考:https://github.com/chyingp/blog/blob/master/jquery/jQuery%E6%BA%90%E7%A0%81-%E7%BE%8E%E5%85%83$%E7%9A%84%E8%8B%A5%E5%B9%B2%E7%A7%8D%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95.md

$的用法有将近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
});
 
 
上一篇:(转)HBase工程师线上工作经验总结----HBase常见问题及分析


下一篇:ios NSURLSession后台传输