Sidr插件 - $ .sidr如何工作

时间:2015-06-18 09:20:13

标签: javascript jquery

我正在尝试使用http://www.berriart.com/sidr/#中的Sidr插件来访问我的网站

从源代码中可以看到这段代码,我不明白它应该如何工作。我试着将它评论出来,但它没有做任何事情。

$.sidr = function( method ) {

if ( methods[method] ) {
  return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
}
else if ( typeof method === 'function' || typeof method === 'string' || ! method ) {
  return methods.toggle.apply( this, arguments );
}
else {
  $.error( 'Method ' + method + ' does not exist on jQuery.sidr' );
}

以下是源代码the source code of the Sidr plugin

的链接

有人可以详细说明一下吗?我还是jQuery的新手

0 个答案:

没有答案