이 기사의 예에서는 jQuery 집계 함수를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
(function($) { $.fn.aggregate = function(seed, func) { var _r = seed == null ? "" : seed; this.each(function(index, element) { _r = func(_r, element); }); return _r; }; $.fn.count = function() { return this.aggregate( 0, // seed function(result, _) { // func return result + 1; }); }; })(jQuery); alert($("a").count());
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.