本文实例讲述了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程序设计有所帮助。
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号