我是否应该在jQuery中缓存$(this),如果它被多次使用?

前端之家收集整理的这篇文章主要介绍了我是否应该在jQuery中缓存$(this),如果它被多次使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道如果您多次使用它,您应该缓存选择器的结果.一个例子是:
var $selected = $('.some-selected-element');

process($selected);
doStuff($selected);

但如果多次使用缓存$(this),是否有任何性能优势?

$('.some-selector').hover(function () {
    if (!$(this).hasClass('some-other-class')) {
        $(this).addClass('another-class');
    }
    process($(this));
}

解决方法

是的,性能提升,因为它可以防止jQuery解释你的选择器.

这是选择器的解释,以及你将绕过的东西. https://github.com/jquery/jquery/blob/master/src/core.js#L78-188

基本上,这部分

if ( selector.nodeType ) {
    this.context = this[0] = selector;
    this.length = 1;
    return this;
}
原文链接:https://www.f2er.com/jquery/181254.html

猜你在找的jQuery相关文章