我正在使用select2 jQuery插件(http://ivaynberg.github.io/select2/),它正在完成它的工作,但我想知道如何看到我可以随身携带的所有配置选项。我的意思是:
$("#select2select").select2({
placeholder: "Selecteer een thema...",
allowClear: false,
maximumSelectionSize: 2,
formatResult: format,
escapeMarkup: function(m) {
return m;
}
});
这实际上适用于所有jQuery插件。我在Visual Studio的MVC项目中使用它,似乎没有外部库的自动完成。
那么如何查看所有配置选项呢?
答案 0 :(得分:0)
我不认为可以在Visual Studio中获取它,因为select2 jQuery插件在代码的注释中没有VSDoc。
他们在插件的网站上有真正优秀的文档:http://ivaynberg.github.io/select2/#documentation。构造函数部分下的所有内容都应该为您提供所需的内容。