我正在尝试优化一些遍历和隐藏/显示一些无序列表的基本 jquery 脚本。
这是 jsperf 中的测试用例:http: //jsperf.com/caching-vs-no-caching
我在两个浏览器中运行测试:Chrome 和 IE7/IE8,令人惊讶的是缓存的情况更慢 - 有点慢但仍然如此。
未优化的版本是:
(function( $ ) {
$.fn.menuManipulation = function() {
this.parents().show();
};
})( jQuery );
$('.menu-vertical li.selected').menuManipulation();
$(".menu-vertical li.selected > ul.static").show();
$('li.static').has('ul').addClass("with-child");
和缓存的:
(function($) {
$.fn.menuManipulation = function() {
this.parents().show();
};
})(jQuery);
var menu = $('.menu-vertical');
menu.find('li.selected').menuManipulation();
menu.find('li.selected > ul.static').show();
menu.find('li.static').has('ul').addClass("with-child");
有人可以解释我做错了什么以及为什么缓存的版本似乎更慢吗?