编写jQuery插件

Posted anxiangff

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写jQuery插件相关的知识,希望对你有一定的参考价值。

给jQuery对象绑定一个新方法是通过扩展 $.fn对象实现的。让我们来编写第一个扩展

$.fn.bg = function () {    // this已绑定为当前jQuery对象:    this.css(‘backgroundColor‘, ‘#cfcfcf‘).css(‘color‘, ‘#d85030‘);
   return this; }

 

<!-- html结构 -->
<div id="changeBg"> 啦啦啦啦啦</p>
</div>

 

<!-- js结构 -->

$(‘#changeBg‘).bg 




以上是关于编写jQuery插件的主要内容,如果未能解决你的问题,请参考以下文章

编写优秀jQuery插件的10个技巧

编写JQuery插件-2

编写优秀jQuery插件的10个技巧

jQuery插件编写及链式编程模型小结

编写优秀jQuery插件的10个技巧

编写优秀jQuery插件的10个技巧