是'设置'jQuery中的关键字?

时间:2013-10-07 04:34:32

标签: jquery

我在jQuery插件中遇到了以下代码。我已将其简化为带走课程等。但[关键]词'设置'不断出现: -

$(settings['#id1'], this).bind('click', function(){...});


$(settings['box']).fadeOut("fast");

and

$(this).find(settings['#id1']);

这里有settings个关键字吗?我在documentation

中找不到它

1 个答案:

答案 0 :(得分:2)

popbox.js line #4

var settings = $.extend({
  selector      : this.selector,
  open          : '.open',
  box           : '.box',
  arrow         : '.arrow',
  arrow_border  : '.arrow-border',
  close         : '.close'
}, options);

真的不难找到。