jQuery $this vs $(this)在插件开发中

前端之家收集整理的这篇文章主要介绍了jQuery $this vs $(this)在插件开发中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道为什么在这么多的 jquery插件中,$(this)设置为指向$this,这是一个例子,如果我在页面上包含以下两个插件
(function($) {
   jQuery.fn.pluginOne = function() {
      return this.each(function() {
         $this = $(this); <--
         alert($this);
      });
   };
})(jQuery)

(function($) {
   jQuery.fn.pluginTwo = function() {
      return this.each(function() {
         $this = $(this); <--
         alert($this);
      });
   };
})(jQuery)
@H_502_4@当我在dom上调用两个插件时:

$(document).ready({
   $('.myClass').pluginOne();
   $('.myOtherClass').pluginTwo();
});
@H_502_4@第一个插件将从第二个插件获得$this …而我将$(this)指向一个本地var:

(function($) {
   jQuery.fn.pluginTwo = function() {
      return this.each(function() {
         var trigger = $(this); <--
         alert(trigger);
      });
   };
})(jQuery)
@H_502_4@一切都有效,当然应该……

@H_502_4@所以我的问题是……我什么时候应该使用$this?

@H_502_4@谢谢

解决方法

$这是人们用来在变量中缓存实际jQuery对象$(this)的标准. @H_502_4@你可以把它叫做你想要的,有些人喜欢把它称为$self.

@H_502_4@例如

var $self = $(this)
@H_502_4@当您查看代码以识别它是一个jQuery对象而不是一个普通的dom对象时,它会有所帮助.

@H_502_4@由于您只创建了一个jQuery变量实例,因此性能更好.

原文链接:https://www.f2er.com/jquery/179034.html

猜你在找的jQuery相关文章