简单的jQuery插件布局+如何';这个';工作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的jQuery插件布局+如何';这个';工作相关的知识,希望对你有一定的参考价值。

Simple plugin to demonstrate how the 'this' keyword is used. Plugin also allows chaining via the 'return'
  1. jQuery(function($){
  2. $(".boo").sample().fadeOut('slow');
  3. });
  4.  
  5. /**
  6.  * A Basic sample plugin
  7.  */
  8. (function($){
  9. $.fn.sample = function(){
  10. //Return this to continue chaining after the plugin (this refers to the jQuery object)
  11. console.log(this);//jQuery object
  12. console.log(this[0]);//First selected element
  13. return this.each(function(i){
  14. var $this = $(this);//$this now refers to the current element being iterated over.
  15. console.log(i);//Index of current element
  16. console.log($this.attr('id'));//Use jQuery methods to do what you like with elements
  17. });
  18. };
  19. })(jQuery);

以上是关于简单的jQuery插件布局+如何';这个';工作的主要内容,如果未能解决你的问题,请参考以下文章

简单jQuery相等列插件

div拖拽缩放jquery插件编写——带8个控制点

使用jQuery(form)验证插件的简单数学验证JavaScript脚本

如何向WordPress添加简单jQuery脚本

jQuery自动保存插件

jQuery插件模板