标签: javascript jquery selectize.js
我正在使用选择,我希望在不点击选择输入的情况下显示一些选项。所以我使用NSInteger num = (NSInteger)floorf(width);但它不起作用。如何在不点击输入的情况下显示几个选项?
NSInteger num = (NSInteger)floorf(width);
答案 0 :(得分:1)
假设您将选择性插件绑定为$('.selectize-input').selectize(options)之类的内容,您应该可以使用API的open方法,如下所示:
$('.selectize-input').selectize(options)
$('.selectize-input')[0].open();