我正在关注JQuery Plugins/Authoring教程,但无法弄清楚arguments
第16行和第18行的含义。我错过了一些真正基本的东西吗?
(function( $ ){
var methods = {
init : function( options ) {
// ...
},
show : function( ) {
// ...
};
$.fn.tooltip = function( method ) {
// Method calling logic
if ( methods[method] ) {
return methods[ method ].
apply( this, Array.prototype.slice.call( arguments, 1 ));
} else if ( typeof method === 'object' || ! method ) {
return methods.init.apply( this, arguments );
} else {
$.error( 'Method ' + method + ' does not exist on jQuery.tooltip' );
}
};
})( jQuery );
谢谢你。