简单的jQuery插件布局+如何';这个';工作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的jQuery插件布局+如何';这个';工作相关的知识,希望对你有一定的参考价值。
Simple plugin to demonstrate how the 'this' keyword is used. Plugin also allows chaining via the 'return'
jQuery(function($){ $(".boo").sample().fadeOut('slow'); }); /** * A Basic sample plugin */ (function($){ $.fn.sample = function(){ //Return this to continue chaining after the plugin (this refers to the jQuery object) console.log(this);//jQuery object console.log(this[0]);//First selected element return this.each(function(i){ var $this = $(this);//$this now refers to the current element being iterated over. console.log(i);//Index of current element console.log($this.attr('id'));//Use jQuery methods to do what you like with elements }); }; })(jQuery);
以上是关于简单的jQuery插件布局+如何';这个';工作的主要内容,如果未能解决你的问题,请参考以下文章