$(this) 和缓存选择器一样吗?$(this) 是否每次都搜索 DOM?
例如:
$('#selector').on('click', function() {
$(this).method();
$(this).method1();
$(this).method2();
//OR
var selector = $('#selector');
selector.method();
selector.method1();
selector.method2();
}