-3

我在一个 jQuery 插件中遇到了以下代码。我已经简化了它以带走课程等。但是 [key]word 'settings' 不断出现:-

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


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

and

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

settings这里有关键字吗?我在文档中找不到

4

1 回答 1

2

popbox.js第 4 行

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

真的不难找到。

于 2013-10-07T04:39:16.877 回答