jQuery扩展模板

Posted

tags:

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

A quick template for extending javascript/jQuery functionality
  1. (function($) {
  2. $.extend($.ui.tabs.prototype, {
  3. _tabify: function(init) {
  4. //Do stuff here
  5. //We extended the _tabify function of jQuery's tabs
  6. }
  7. });
  8. })(jQuery);

以上是关于jQuery扩展模板的主要内容,如果未能解决你的问题,请参考以下文章