我在jQuery插件中遇到了以下代码。我已将其简化为带走课程等。但[关键]词'设置'不断出现: -
$(settings['#id1'], this).bind('click', function(){...});
$(settings['box']).fadeOut("fast");
and
$(this).find(settings['#id1']);
这里有settings
个关键字吗?我在documentation
答案 0 :(得分:2)
var settings = $.extend({
selector : this.selector,
open : '.open',
box : '.box',
arrow : '.arrow',
arrow_border : '.arrow-border',
close : '.close'
}, options);
真的不难找到。