当前位置:嗨网首页>书籍在线阅读

29-解决方案

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

4.7.2 解决方案

(function($) {
   $.fn.myPlugin = function(settings) {
     return this.each(function() {
        settings = $.extend({ onShow: null }, settings);
        $(this).show();
        if ( $.isFunction( settings.onShow ) ) {
          settings.onShow.call(this);
        }
     });
   };
   $(document).ready(function() {
     $('div').myPlugin({
        onShow: function() {
          alert('My callback!');
        }
     });
   });
})(jQuery);