return this.each(function ())
Posted oliwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了return this.each(function ())相关的知识,希望对你有一定的参考价值。
1 return this.each(function(){ 2 //代码 3 });
this.each()执行完返回的是this,这时候再return this.each(),返回的依旧是this,而这个this上下文又是指代$(‘[title]‘),意味着你可以在colorTip()后继续加其他方法,比如:
1 $(‘[title]‘).colorTip({color:‘yellow‘}).size();
以上是关于return this.each(function ())的主要内容,如果未能解决你的问题,请参考以下文章
为啥在 jQuery 插件中返回 this.each(function())?