jquery的封装
Posted zhaodz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery的封装相关的知识,希望对你有一定的参考价值。
1.jq架构
(function(window,undefined) var jQuery = function() window.jQuery=window.$=jQuery )(window)
2.获取元素
(function(window,undefined) var jQuery = function(selector) var elements = document.querySelectorAll(selector) for(var i=0;i<elements.length;i++) this[i] = elements[i] this.length = elements.length window.jQuery = window.$ = jQuery )(window)
以上是关于jquery的封装的主要内容,如果未能解决你的问题,请参考以下文章